Update metadata

This commit is contained in:
Imran Ismail
2019-09-05 12:08:20 +08:00
parent 6e5c237523
commit 56c04146d7
1454 changed files with 204046 additions and 234789 deletions

38
node_modules/json5/dist/index.js generated vendored
View File

@@ -18,7 +18,7 @@
});
var _core = createCommonjsModule(function (module) {
var core = module.exports = { version: '2.5.7' };
var core = module.exports = { version: '2.6.5' };
if (typeof __e == 'number') { __e = core; } // eslint-disable-line no-undef
});
var _core_1 = _core.version;
@@ -114,14 +114,31 @@
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
};
var _library = false;
var _shared = createCommonjsModule(function (module) {
var SHARED = '__core-js_shared__';
var store = _global[SHARED] || (_global[SHARED] = {});
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
version: _core.version,
mode: _library ? 'pure' : 'global',
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
});
});
var _functionToString = _shared('native-function-to-string', Function.toString);
var _redefine = createCommonjsModule(function (module) {
var SRC = _uid('src');
var TO_STRING = 'toString';
var $toString = Function[TO_STRING];
var TPL = ('' + $toString).split(TO_STRING);
var TPL = ('' + _functionToString).split(TO_STRING);
_core.inspectSource = function (it) {
return $toString.call(it);
return _functionToString.call(it);
};
(module.exports = function (O, key, val, safe) {
@@ -141,7 +158,7 @@
}
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
})(Function.prototype, TO_STRING, function toString() {
return typeof this == 'function' && this[SRC] || $toString.call(this);
return typeof this == 'function' && this[SRC] || _functionToString.call(this);
});
});
@@ -1541,15 +1558,20 @@
var product = '';
for (var i = 0, list = value; i < list.length; i += 1) {
var c = list[i];
for (var i = 0; i < value.length; i++) {
var c = value[i];
switch (c) {
case "'":
case '"':
quotes[c]++;
product += c;
continue
case '\0':
if (util.isDigit(value[i + 1])) {
product += '\\x00';
continue
}
}
if (replacements[c]) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

9
node_modules/json5/dist/index.mjs generated vendored
View File

@@ -1253,13 +1253,20 @@ var stringify = function stringify (value, replacer, space) {
let product = '';
for (const c of value) {
for (let i = 0; i < value.length; i++) {
const c = value[i];
switch (c) {
case "'":
case '"':
quotes[c]++;
product += c;
continue
case '\0':
if (util.isDigit(value[i + 1])) {
product += '\\x00';
continue
}
}
if (replacements[c]) {