UNPKG
rejoin
Version:
latest (0.0.0)
0.0.0
Another Object/Relational-Mapper
github.com/martinandert/rejoin
martinandert/rejoin
rejoin
/
lib
/
utils
/
isFunc.js
10 lines
(6 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
toString =
Object
.
prototype
.
toString
;
function
isFunc
(
obj
) {
return
toString.
call
(obj) ===
'[object Function]'
; }
module
.
exports
= isFunc;