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

View File

@@ -0,0 +1,2 @@
require('../../modules/es6.regexp.constructor');
module.exports = RegExp;

2
node_modules/core-js/library/fn/regexp/escape.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
require('../../modules/core.regexp.escape');
module.exports = require('../../modules/_core').RegExp.escape;

5
node_modules/core-js/library/fn/regexp/flags.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.flags');
var flags = require('../../modules/_flags');
module.exports = function(it){
return flags.call(it);
};

9
node_modules/core-js/library/fn/regexp/index.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
require('../../modules/es6.regexp.constructor');
require('../../modules/es6.regexp.to-string');
require('../../modules/es6.regexp.flags');
require('../../modules/es6.regexp.match');
require('../../modules/es6.regexp.replace');
require('../../modules/es6.regexp.search');
require('../../modules/es6.regexp.split');
require('../../modules/core.regexp.escape');
module.exports = require('../../modules/_core').RegExp;

5
node_modules/core-js/library/fn/regexp/match.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.match');
var MATCH = require('../../modules/_wks')('match');
module.exports = function(it, str){
return RegExp.prototype[MATCH].call(it, str);
};

5
node_modules/core-js/library/fn/regexp/replace.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.replace');
var REPLACE = require('../../modules/_wks')('replace');
module.exports = function(it, str, replacer){
return RegExp.prototype[REPLACE].call(it, str, replacer);
};

5
node_modules/core-js/library/fn/regexp/search.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.search');
var SEARCH = require('../../modules/_wks')('search');
module.exports = function(it, str){
return RegExp.prototype[SEARCH].call(it, str);
};

5
node_modules/core-js/library/fn/regexp/split.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.split');
var SPLIT = require('../../modules/_wks')('split');
module.exports = function(it, str, limit){
return RegExp.prototype[SPLIT].call(it, str, limit);
};

5
node_modules/core-js/library/fn/regexp/to-string.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es6.regexp.to-string');
module.exports = function toString(it){
return RegExp.prototype.toString.call(it);
};