UNPKG
computed
Version:
latest (0.0.1)
0.0.1
ES7 decorator for computed properties
github.com/oriSomething/computed
oriSomething/computed
computed
/
lib
/
utils
/
is-function.js
4 lines
(3 loc)
•
87 B
JavaScript
View Raw
1
2
3
4
export
default
function
isFunction
(
f
) {
return
typeof
f ===
'function'
||
false
; }