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