Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
_internals
/
isIterable.js
blob: 94f8a1aef6a099dcf235fb6b68d3d6680c556566 [
file
] [
log
] [
blame
] [
edit
]
import
{
type
}
from
'../type.js'
export
function
isIterable
(
input
){
return
Array
.
isArray
(
input
)
||
type
(
input
)
===
'Object'
}