0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

10
web/node_modules/es5-ext/reg-exp/#/index.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
"use strict";
module.exports = {
isSticky: require("./is-sticky"),
isUnicode: require("./is-unicode"),
match: require("./match"),
replace: require("./replace"),
search: require("./search"),
split: require("./split")
};

6
web/node_modules/es5-ext/reg-exp/#/is-sticky.js generated vendored Normal file
View file

@ -0,0 +1,6 @@
"use strict";
var validRegExp = require("../valid-reg-exp")
, re = /\/[a-xz]*y[a-xz]*$/;
module.exports = function () { return Boolean(String(validRegExp(this)).match(re)); };

6
web/node_modules/es5-ext/reg-exp/#/is-unicode.js generated vendored Normal file
View file

@ -0,0 +1,6 @@
"use strict";
var validRegExp = require("../valid-reg-exp")
, re = /\/[a-xz]*u[a-xz]*$/;
module.exports = function () { return Boolean(String(validRegExp(this)).match(re)); };

10
web/node_modules/es5-ext/reg-exp/#/match/implement.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "match", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}

3
web/node_modules/es5-ext/reg-exp/#/match/index.js generated vendored Normal file
View file

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./is-implemented")() ? RegExp.prototype.match : require("./shim");

View file

@ -0,0 +1,8 @@
"use strict";
var re = /foo/;
module.exports = function () {
if (typeof re.match !== "function") return false;
return re.match("barfoobar") && !re.match("elo");
};

8
web/node_modules/es5-ext/reg-exp/#/match/shim.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
var validRegExp = require("../../valid-reg-exp");
module.exports = function (string) {
validRegExp(this);
return String(string).match(this);
};

View file

@ -0,0 +1,10 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "replace", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}

3
web/node_modules/es5-ext/reg-exp/#/replace/index.js generated vendored Normal file
View file

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./is-implemented")() ? RegExp.prototype.replace : require("./shim");

View file

@ -0,0 +1,8 @@
"use strict";
var re = /foo/;
module.exports = function () {
if (typeof re.replace !== "function") return false;
return re.replace("foobar", "mar") === "marbar";
};

8
web/node_modules/es5-ext/reg-exp/#/replace/shim.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
var validRegExp = require("../../valid-reg-exp");
module.exports = function (string, replaceValue) {
validRegExp(this);
return String(string).replace(this, replaceValue);
};

10
web/node_modules/es5-ext/reg-exp/#/search/implement.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "search", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}

3
web/node_modules/es5-ext/reg-exp/#/search/index.js generated vendored Normal file
View file

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./is-implemented")() ? RegExp.prototype.search : require("./shim");

View file

@ -0,0 +1,8 @@
"use strict";
var re = /foo/;
module.exports = function () {
if (typeof re.search !== "function") return false;
return re.search("barfoo") === 3;
};

8
web/node_modules/es5-ext/reg-exp/#/search/shim.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
var validRegExp = require("../../valid-reg-exp");
module.exports = function (string) {
validRegExp(this);
return String(string).search(this);
};

10
web/node_modules/es5-ext/reg-exp/#/split/implement.js generated vendored Normal file
View file

@ -0,0 +1,10 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "split", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}

3
web/node_modules/es5-ext/reg-exp/#/split/index.js generated vendored Normal file
View file

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./is-implemented")() ? RegExp.prototype.split : require("./shim");

View file

@ -0,0 +1,8 @@
"use strict";
var re = /\|/;
module.exports = function () {
if (typeof re.split !== "function") return false;
return re.split("bar|foo")[1] === "foo";
};

8
web/node_modules/es5-ext/reg-exp/#/split/shim.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
var validRegExp = require("../../valid-reg-exp");
module.exports = function (string) {
validRegExp(this);
return String(string).split(this);
};

11
web/node_modules/es5-ext/reg-exp/#/sticky/implement.js generated vendored Normal file
View file

@ -0,0 +1,11 @@
"use strict";
var isSticky = require("../is-sticky");
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "sticky", {
configurable: true,
enumerable: false,
get: isSticky
});
}

View file

@ -0,0 +1,10 @@
"use strict";
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return "sticky" in dummyRegExp;
};

View file

@ -0,0 +1,11 @@
"use strict";
var isUnicode = require("../is-unicode");
if (!require("./is-implemented")()) {
Object.defineProperty(RegExp.prototype, "unicode", {
configurable: true,
enumerable: false,
get: isUnicode
});
}

View file

@ -0,0 +1,10 @@
"use strict";
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return "unicode" in dummyRegExp;
};

9
web/node_modules/es5-ext/reg-exp/escape.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
// Thanks to Andrew Clover:
// http://stackoverflow.com/questions/3561493
// /is-there-a-regexp-escape-function-in-javascript
"use strict";
var re = /[-/\\^$*+?.()|[\]{}]/g;
module.exports = function (str) { return String(str).replace(re, "\\$&"); };

8
web/node_modules/es5-ext/reg-exp/index.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
module.exports = {
"#": require("./#"),
"escape": require("./escape"),
"isRegExp": require("./is-reg-exp"),
"validRegExp": require("./valid-reg-exp")
};

7
web/node_modules/es5-ext/reg-exp/is-reg-exp.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
"use strict";
var objToString = Object.prototype.toString, id = objToString.call(/a/);
module.exports = function (value) {
return (value && (value instanceof RegExp || objToString.call(value) === id)) || false;
};

8
web/node_modules/es5-ext/reg-exp/valid-reg-exp.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
"use strict";
var isRegExp = require("./is-reg-exp");
module.exports = function (value) {
if (!isRegExp(value)) throw new TypeError(value + " is not a RegExp object");
return value;
};