UNPKG

iter-tools-es

Version:
9 lines (7 loc) 260 B
const { isUndefined } = require('../is-undefined/is-undefined.js'); function notAsyncLoopable(value) { return value == null || isUndefined(value[Symbol.asyncIterator]) && isUndefined(value[Symbol.iterator]); } exports.notAsyncLoopable = notAsyncLoopable;