Package Exports
- @f/is-function
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@f/is-function) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-function
Test whether a given value is a function.
Installation
$ npm install @f/is-functionUsage
var isFunction = require('@f/is-function')
isFunction() // => false
isFunction(true) // => false
isFunction({}) // => false
isFunction(function () {}) // => trueAPI
isFunction(value)
value- value to test
Returns: boolean
License
MIT