UNPKG

aran

Version:
8 lines (6 loc) 188 B
const { Symbol: { iterator }, } = globalThis; /** @type {(any: any) => any is Iterable<any>} */ export const isIterable = (any) => any != null && typeof any[iterator] === "function";