Sha256: 32e097c60b955cd57d9065f9a295cfa5b0a13dd1be3ec436876fe646eeda660f

Contents?: true

Size: 746 Bytes

Versions: 36

Compression:

Stored size: 746 Bytes

Contents

'use strict';
var IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;
var create = require('../internals/object-create');
var createPropertyDescriptor = require('../internals/create-property-descriptor');
var setToStringTag = require('../internals/set-to-string-tag');
var Iterators = require('../internals/iterators');

var returnThis = function () { return this; };

module.exports = function (IteratorConstructor, NAME, next) {
  var TO_STRING_TAG = NAME + ' Iterator';
  IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
  setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
  Iterators[TO_STRING_TAG] = returnThis;
  return IteratorConstructor;
};

Version data entries

36 entries across 35 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.18.0 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.18.2 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.16.1 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.15.2 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.18.4 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.18.1 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.14.0 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/core-js/internals/create-iterator-constructor.js
tang-0.2.1 spec/tang_app/node_modules/core-js/internals/create-iterator-constructor.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/core-js/internals/create-iterator-constructor.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/core-js/internals/create-iterator-constructor.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/core-js/internals/create-iterator-constructor.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/core-js/internals/create-iterator-constructor.js
tang-0.2.0 spec/tang_app/node_modules/core-js/internals/create-iterator-constructor.js
tang-0.1.0 spec/tang_app/node_modules/core-js/internals/create-iterator-constructor.js
tang-0.0.9 spec/tang_app/node_modules/core-js/internals/create-iterator-constructor.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/internals/create-iterator-constructor.js
condenser-0.3 lib/condenser/processors/node_modules/core-js-pure/internals/create-iterator-constructor.js