ix
Version:
The Interactive Extensions for JavaScript
16 lines (14 loc) • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.flatMapProto = void 0;
const iterablex_js_1 = require("../../iterable/iterablex.js");
const flatmap_js_1 = require("../../iterable/operators/flatmap.js");
/**
* @ignore
*/
function flatMapProto(fn, thisArg) {
return (0, flatmap_js_1.flatMap)(fn, thisArg)(this);
}
exports.flatMapProto = flatMapProto;
iterablex_js_1.IterableX.prototype.flatMap = flatMapProto;
//# sourceMappingURL=flatmap.js.map