ix
Version:
The Interactive Extensions for JavaScript
22 lines (18 loc) • 440 B
text/typescript
import { IterableX } from '../../iterable/iterablex.js';
import { map } from '../../iterable/operators/map.js';
/**
* @ignore
*/
export function mapProto<T, U>(
this: IterableX<T>,
fn: (value: T, index: number) => U,
thisArg?: any
): IterableX<U> {
return map<T, U>(fn, thisArg)(this);
}
IterableX.prototype.map = mapProto;
declare module '../../iterable/iterablex' {
interface IterableX<T> {
map: typeof mapProto;
}
}