summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
committerRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
commit953ddd82e48dd206cef5ac94456549aed13b3ad5 (patch)
tree8f003106ee2e7f422e5a22d2ee04d0db302e66c0 /includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js
parent62a9199846b0c07c03218703b33e8385764f42d9 (diff)
downloadpluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.gz
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.bz2
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.zip
Updated 30 files and deleted 2976 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js')
-rw-r--r--includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js b/includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js
deleted file mode 100644
index e4d1d44..0000000
--- a/includes/external/addressbook/node_modules/validator/lib/isAlphanumeric.js
+++ /dev/null
@@ -1,40 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = isAlphanumeric;
-exports.locales = void 0;
-
-var _assertString = _interopRequireDefault(require("./util/assertString"));
-
-var _alpha = require("./alpha");
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-function isAlphanumeric(_str) {
- var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
- var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
- (0, _assertString.default)(_str);
- var str = _str;
- var ignore = options.ignore;
-
- if (ignore) {
- if (ignore instanceof RegExp) {
- str = str.replace(ignore, '');
- } else if (typeof ignore === 'string') {
- str = str.replace(new RegExp("[".concat(ignore.replace(/[-[\]{}()*+?.,\\^$|#\\s]/g, '\\$&'), "]"), 'g'), ''); // escape regex for ignore
- } else {
- throw new Error('ignore should be instance of a String or RegExp');
- }
- }
-
- if (locale in _alpha.alphanumeric) {
- return _alpha.alphanumeric[locale].test(str);
- }
-
- throw new Error("Invalid locale '".concat(locale, "'"));
-}
-
-var locales = Object.keys(_alpha.alphanumeric);
-exports.locales = locales; \ No newline at end of file