iterama
Version:
Composable functional (async) iterable helpers
11 lines (9 loc) • 294 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.toIteratorAsync = void 0;
var toIteratorAsync = function toIteratorAsync(iterable) {
return iterable[Symbol.asyncIterator]();
};
exports.toIteratorAsync = toIteratorAsync;
//# sourceMappingURL=to-iterator-async.js.map