MES手机端
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
liup a01a5aa773 提交修改 3 semanas atrás
..
LICENSE 提交修改 3 semanas atrás
README.md 提交修改 3 semanas atrás
index.js 提交修改 3 semanas atrás
package.json 提交修改 3 semanas atrás
test.js 提交修改 3 semanas atrás

README.md

is-function

browser support

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