uapte
This commit is contained in:
-15
@@ -1,15 +0,0 @@
|
||||
/* 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
@@ -1,13 +0,0 @@
|
||||
"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
@@ -1,13 +0,0 @@
|
||||
"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");
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/match/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = require("./shim");
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
-6
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) {
|
||||
var result = "foobar".match(/foo/);
|
||||
a.deep(t.call(/foo/, "foobar"), result);
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/replace/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = require("./shim");
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(t.call(/foo/, "foobar", "mar"), "marbar"); };
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/search/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = require("./shim");
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(t.call(/foo/, "barfoo"), 3); };
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/split/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = require("./shim");
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a.deep(t.call(/\|/, "bar|foo"), ["bar", "foo"]); };
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/sticky/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var isImplemented = require("../../../../reg-exp/#/unicode/is-implemented");
|
||||
|
||||
module.exports = function (a) { a(isImplemented(), true); };
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function (t, a) { a(typeof t(), "boolean"); };
|
||||
Reference in New Issue
Block a user