Configring node js.

This commit is contained in:
Vahagn Khachatryan
2018-12-07 15:58:35 +00:00
parent eef20e4bdd
commit 4fa4328740
1501 changed files with 87070 additions and 0 deletions

13
node_modules/core-js/modules/_iter-create.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
var create = require('./_object-create')
, descriptor = require('./_property-desc')
, setToStringTag = require('./_set-to-string-tag')
, IteratorPrototype = {};
// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
require('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function(){ return this; });
module.exports = function(Constructor, NAME, next){
Constructor.prototype = create(IteratorPrototype, {next: descriptor(1, next)});
setToStringTag(Constructor, NAME + ' Iterator');
};