First release

This commit is contained in:
Owen Quinlan 2021-07-02 19:29:34 +10:00
commit fa6c85266e
2339 changed files with 761050 additions and 0 deletions

23
node_modules/is-function/README.md generated vendored Normal file
View file

@ -0,0 +1,23 @@
# is-function
[![browser support](https://ci.testling.com/grncdr/js-is-function.png)](https://ci.testling.com/grncdr/js-is-function)
Is that thing a function? Use this module to find out.
## API
### module.exports = function isFunction(fn) -> Boolean
Return `true` if `fn` is a function, otherwise `false`.
## Why not typeof fn === 'function'
Because certain old browsers misreport the type of `RegExp` objects as functions.
## Acknowledgements
I stole this from https://github.com/ljharb/object-keys
## License
MIT