project files added

This commit is contained in:
mhalfmann
2021-06-15 16:00:08 +02:00
parent e156e2f053
commit db46afa351
13928 changed files with 1569902 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/* eslint-env node */
"use strict";
var indexTest = require("tad/lib/utils/index-test")
, path = require("path").resolve(__dirname, "../../../reg-exp/#");
module.exports = function (t, a, d) {
indexTest(
indexTest.readDir(path).aside(function (data) {
delete data.sticky;
delete data.unicode;
})
)(t, a, d);
};
+13
View File
@@ -0,0 +1,13 @@
"use strict";
module.exports = function (t, a) {
var re;
a(t.call(/raz/), false, "Normal");
a(t.call(/raz/g), false, "Global");
try {
// eslint-disable-next-line no-invalid-regexp
re = new RegExp("raz", "y");
} catch (ignore) {}
if (!re) return;
a(t.call(re), true, "Sticky");
};
+13
View File
@@ -0,0 +1,13 @@
"use strict";
module.exports = function (t, a) {
var re;
a(t.call(/raz/), false, "Normal");
a(t.call(/raz/g), false, "Global");
try {
// eslint-disable-next-line no-invalid-regexp
re = new RegExp("raz", "u");
} catch (ignore) {}
if (!re) return;
a(t.call(re), true, "Unicode");
};
+7
View File
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/match/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
+3
View File
@@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};
+6
View File
@@ -0,0 +1,6 @@
"use strict";
module.exports = function (t, a) {
var result = "foobar".match(/foo/);
a.deep(t.call(/foo/, "foobar"), result);
};
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/replace/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
+3
View File
@@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};
+5
View File
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(t.call(/foo/, "foobar", "mar"), "marbar");
};
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/search/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
+3
View File
@@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};
+5
View File
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(t.call(/foo/, "barfoo"), 3);
};
+7
View File
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/split/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
+3
View File
@@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};
+5
View File
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a.deep(t.call(/\|/, "bar|foo"), ["bar", "foo"]);
};
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/sticky/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};
@@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/unicode/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};
@@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};