A Set of Utility method for to check isArray,isNumber,isObject,isInteger,isCallable etc
npm install that-isA Set of Utility method for to check isArray,isNumber,isObject,isInteger,isCallable etc
1. npm i that-is -S
2. yarn add that-is
``js`
const That = require("that-is");
That.isArray([]); // return true
`ts`
import That from "that-is";
That.isInteger(3.0); // return true
npm run test`