UNPKG
moko
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.0
Generator based models
github.com/MokoJs/moko
moko
/
lib
/
utils
/
isGenerator.js
4 lines
(3 loc)
•
94 B
JavaScript
View Raw
1
2
3
4
module
.exports =
function
isGenerator
(fn)
{
return
/^
function
\
s
*\*/.
test
(fn.toString()
); };