blob: 94f8a1aef6a099dcf235fb6b68d3d6680c556566 [file] [log] [blame] [edit]
import { type } from '../type.js'
export function isIterable(input){
return Array.isArray(input) || type(input) === 'Object'
}