UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

18 lines (14 loc) 357 B
module.exports = { isObject (subject) { return (typeof subject === 'object' && subject !== null); }, isFunction (subject) { return (typeof subject === 'function'); }, isString (subject) { return (typeof subject === 'string'); }, randomNumber () { return ~~(Math.random() * 100000000); } };