Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

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);
};

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");
};

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");
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/match/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};

View File

@ -0,0 +1,8 @@
"use strict";
module.exports = function (t, a) {
var result = ["foo"];
result.index = 0;
result.input = "foobar";
a.deep(t.call(/foo/, "foobar"), result);
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/replace/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(t.call(/foo/, "foobar", "mar"), "marbar");
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/search/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(t.call(/foo/, "barfoo"), 3);
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/split/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,3 @@
"use strict";
module.exports = require("./shim");

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a.deep(t.call(/\|/, "bar|foo"), ["bar", "foo"]);
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/sticky/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};

View File

@ -0,0 +1,7 @@
"use strict";
var isImplemented = require("../../../../reg-exp/#/unicode/is-implemented");
module.exports = function (a) {
a(isImplemented(), true);
};

View File

@ -0,0 +1,5 @@
"use strict";
module.exports = function (t, a) {
a(typeof t(), "boolean");
};