diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:01:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:02:09 +0200 |
commit | 363723fc84f7b8477592e0105aeb331ec9a017af (patch) | |
tree | 29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/core-js/core | |
parent | 5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff) |
node_modules
Diffstat (limited to 'node_modules/core-js/core')
-rw-r--r-- | node_modules/core-js/core/_.js | 2 | ||||
-rw-r--r-- | node_modules/core-js/core/dict.js | 2 | ||||
-rw-r--r-- | node_modules/core-js/core/number.js | 2 | ||||
-rw-r--r-- | node_modules/core-js/core/regexp.js | 2 | ||||
-rw-r--r-- | node_modules/core-js/core/string.js | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/core-js/core/_.js b/node_modules/core-js/core/_.js index 8a99f7062..2b2291e34 100644 --- a/node_modules/core-js/core/_.js +++ b/node_modules/core-js/core/_.js @@ -1,2 +1,2 @@ require('../modules/core.function.part'); -module.exports = require('../modules/_core')._;
\ No newline at end of file +module.exports = require('../modules/_core')._; diff --git a/node_modules/core-js/core/dict.js b/node_modules/core-js/core/dict.js index da84a8d88..33a8be86c 100644 --- a/node_modules/core-js/core/dict.js +++ b/node_modules/core-js/core/dict.js @@ -1,2 +1,2 @@ require('../modules/core.dict'); -module.exports = require('../modules/_core').Dict;
\ No newline at end of file +module.exports = require('../modules/_core').Dict; diff --git a/node_modules/core-js/core/number.js b/node_modules/core-js/core/number.js index 62f632c51..7f48bf70f 100644 --- a/node_modules/core-js/core/number.js +++ b/node_modules/core-js/core/number.js @@ -1,2 +1,2 @@ require('../modules/core.number.iterator'); -module.exports = require('../modules/_core').Number;
\ No newline at end of file +module.exports = require('../modules/_core').Number; diff --git a/node_modules/core-js/core/regexp.js b/node_modules/core-js/core/regexp.js index 3e04c5119..21e12a02e 100644 --- a/node_modules/core-js/core/regexp.js +++ b/node_modules/core-js/core/regexp.js @@ -1,2 +1,2 @@ require('../modules/core.regexp.escape'); -module.exports = require('../modules/_core').RegExp;
\ No newline at end of file +module.exports = require('../modules/_core').RegExp; diff --git a/node_modules/core-js/core/string.js b/node_modules/core-js/core/string.js index 8da740c6e..a8673ec92 100644 --- a/node_modules/core-js/core/string.js +++ b/node_modules/core-js/core/string.js @@ -1,3 +1,3 @@ require('../modules/core.string.escape-html'); require('../modules/core.string.unescape-html'); -module.exports = require('../modules/_core').String;
\ No newline at end of file +module.exports = require('../modules/_core').String; |