UNPKG
monocle-decorators
Version:
latest (2.1.7)
2.1.7
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.0.1
Classy decorators
github.com/caiogondim/monocle-decorators.js
caiogondim/monocle-decorators.js
monocle-decorators
/
src
/
util
/
was-called-as-function.js
6 lines
(4 loc)
•
121 B
JavaScript
View Raw
1
2
3
4
5
6
const
wasCalledAsFunction = (
args
) => {
return
(
typeof
args
[
0
] ===
'function'
) } module.exports = wasCalledAsFunction