UNPKG
on-change
Version:
latest (6.0.0)
6.0.0
5.0.1
5.0.0
4.0.2
4.0.1
4.0.0
3.0.2
3.0.1
3.0.0
2.2.3
2.2.2
2.2.1
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.8.1
1.8.0
1.7.0
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
0.2.0
0.1.0
0.0.1-security
Watch an object or array for changes
github.com/sindresorhus/on-change
sindresorhus/on-change
on-change
/
source
/
is-iterator.js
6 lines
(5 loc)
•
139 B
JavaScript
View Raw
1
2
3
4
5
6
export
default
function
isIterator
(
value
) {
return
value !==
null
&&
typeof
value ===
'object'
&&
typeof
value.
next
===
'function'
; }