This is an alpha version of regular functions. It is not ready for production use, however it is prepared to be taste-tried!
Add Some Common functions used in javascript
Install utilfunctions with npm
npm install utilfunctions
import { isNumber, isString, isRegExp, isBoolean, isUndefined } from "utilfunctions";
function test(number){
return isNumber(number);
}