UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

16 lines 339 B
/** * @module Utilities */ /** * @internal */ export function iterableToAsyncIterable(iterable) { return { async *[Symbol.asyncIterator]() { for (const item of iterable) { yield await Promise.resolve(item); } }, }; } //# sourceMappingURL=iterable-to-async-iterable.js.map