Sha256: eb75d681352f913eb75dd48db85f5671e998d1c75ed4e468ae4cd5ab42b5392d

Contents?: true

Size: 847 Bytes

Versions: 17

Compression:

Stored size: 847 Bytes

Contents

'use strict';
// https://github.com/tc39/proposal-iterator-helpers
var $ = require('../internals/export');
var aFunction = require('../internals/a-function');
var anObject = require('../internals/an-object');
var createIteratorProxy = require('../internals/iterator-create-proxy');
var callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');

var IteratorProxy = createIteratorProxy(function (arg) {
  var iterator = this.iterator;
  var result = anObject(this.next.call(iterator, arg));
  var done = this.done = !!result.done;
  if (!done) return callWithSafeIterationClosing(iterator, this.mapper, result.value);
});

$({ target: 'Iterator', proto: true, real: true }, {
  map: function map(mapper) {
    return new IteratorProxy({
      iterator: anObject(this),
      mapper: aFunction(mapper)
    });
  }
});

Version data entries

17 entries across 16 versions & 6 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/esnext.iterator.map.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/esnext.iterator.map.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/core-js/modules/esnext.iterator.map.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/core-js/modules/esnext.iterator.map.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/core-js/modules/esnext.iterator.map.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/core-js/modules/esnext.iterator.map.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/esnext.iterator.map.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/esnext.iterator.map.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/esnext.iterator.map.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/esnext.iterator.map.js
condenser-0.3 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.2 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.1 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.0.12 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.0.11 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.0.10 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js
condenser-0.0.9 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js