UNPKG

react-async-iterators

Version:

The magic of JavaScript async iterators in React ⛓️ 🧬 🔃

6 lines 194 B
export { isAsyncIter }; function isAsyncIter(input) { const inputAsAny = input; return typeof inputAsAny?.[Symbol.asyncIterator] === 'function'; } //# sourceMappingURL=isAsyncIter.js.map