for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* @param {any} value
* @returns {boolean} true if value is a function
*/
module.exports.isFunction = (value) => typeof value === 'function'
* @returns {boolean} true if value is a string
module.exports.isString = (value) => typeof value === 'string' || value instanceof String