mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var map = require('../internals/iterator-map');
|
|
var IS_PURE = require('../internals/is-pure');
|
|
|
|
// `Iterator.prototype.map` method
|
|
// https://github.com/tc39/proposal-iterator-helpers
|
|
$({ target: 'Iterator', proto: true, real: true, forced: IS_PURE }, {
|
|
map: map
|
|
});
|