ix
Version:
The Interactive Extensions for JavaScript
15 lines (13 loc) • 399 B
JavaScript
import { __awaiter } from "tslib";
import { AsyncIterableX } from '../../asynciterable/asynciterablex.mjs';
import { find } from '../../asynciterable/find.mjs';
/**
* @ignore
*/
export function findProto(options) {
return __awaiter(this, void 0, void 0, function* () {
return find(this, options);
});
}
AsyncIterableX.prototype.find = findProto;
//# sourceMappingURL=find.mjs.map