Skip to main content
Module

x/rambda/source/_internals/isIterable.js

Faster and smaller alternative to Ramda
Latest
File
import { type } from '../type.js'
export function isIterable(input){ return Array.isArray(input) || type(input) === 'Object'}