summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/lib/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_modules/validator/lib/util')
-rw-r--r--src/node_modules/validator/lib/util/assertString.js33
-rw-r--r--src/node_modules/validator/lib/util/includes.js17
-rw-r--r--src/node_modules/validator/lib/util/merge.js22
-rw-r--r--src/node_modules/validator/lib/util/multilineRegex.js23
-rw-r--r--src/node_modules/validator/lib/util/toString.js25
5 files changed, 120 insertions, 0 deletions
diff --git a/src/node_modules/validator/lib/util/assertString.js b/src/node_modules/validator/lib/util/assertString.js
new file mode 100644
index 0000000..ed3ec75
--- /dev/null
+++ b/src/node_modules/validator/lib/util/assertString.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = assertString;
+
+function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
+
+function assertString(input) {
+ var isString = typeof input === 'string' || input instanceof String;
+
+ if (!isString) {
+ var invalidType;
+
+ if (input === null) {
+ invalidType = 'null';
+ } else {
+ invalidType = _typeof(input);
+
+ if (invalidType === 'object' && input.constructor && input.constructor.hasOwnProperty('name')) {
+ invalidType = input.constructor.name;
+ } else {
+ invalidType = "a ".concat(invalidType);
+ }
+ }
+
+ throw new TypeError("Expected string but received ".concat(invalidType, "."));
+ }
+}
+
+module.exports = exports.default;
+module.exports.default = exports.default; \ No newline at end of file
diff --git a/src/node_modules/validator/lib/util/includes.js b/src/node_modules/validator/lib/util/includes.js
new file mode 100644
index 0000000..e061828
--- /dev/null
+++ b/src/node_modules/validator/lib/util/includes.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+
+var includes = function includes(arr, val) {
+ return arr.some(function (arrVal) {
+ return val === arrVal;
+ });
+};
+
+var _default = includes;
+exports.default = _default;
+module.exports = exports.default;
+module.exports.default = exports.default; \ No newline at end of file
diff --git a/src/node_modules/validator/lib/util/merge.js b/src/node_modules/validator/lib/util/merge.js
new file mode 100644
index 0000000..a96c739
--- /dev/null
+++ b/src/node_modules/validator/lib/util/merge.js
@@ -0,0 +1,22 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = merge;
+
+function merge() {
+ var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ var defaults = arguments.length > 1 ? arguments[1] : undefined;
+
+ for (var key in defaults) {
+ if (typeof obj[key] === 'undefined') {
+ obj[key] = defaults[key];
+ }
+ }
+
+ return obj;
+}
+
+module.exports = exports.default;
+module.exports.default = exports.default; \ No newline at end of file
diff --git a/src/node_modules/validator/lib/util/multilineRegex.js b/src/node_modules/validator/lib/util/multilineRegex.js
new file mode 100644
index 0000000..0879ca9
--- /dev/null
+++ b/src/node_modules/validator/lib/util/multilineRegex.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = multilineRegexp;
+
+/**
+ * Build RegExp object from an array
+ * of multiple/multi-line regexp parts
+ *
+ * @param {string[]} parts
+ * @param {string} flags
+ * @return {object} - RegExp object
+ */
+function multilineRegexp(parts) {
+ var flags = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ var regexpAsStringLiteral = parts.join('');
+ return new RegExp(regexpAsStringLiteral, flags);
+}
+
+module.exports = exports.default;
+module.exports.default = exports.default; \ No newline at end of file
diff --git a/src/node_modules/validator/lib/util/toString.js b/src/node_modules/validator/lib/util/toString.js
new file mode 100644
index 0000000..6295192
--- /dev/null
+++ b/src/node_modules/validator/lib/util/toString.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = toString;
+
+function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
+
+function toString(input) {
+ if (_typeof(input) === 'object' && input !== null) {
+ if (typeof input.toString === 'function') {
+ input = input.toString();
+ } else {
+ input = '[object Object]';
+ }
+ } else if (input === null || typeof input === 'undefined' || isNaN(input) && !input.length) {
+ input = '';
+ }
+
+ return String(input);
+}
+
+module.exports = exports.default;
+module.exports.default = exports.default; \ No newline at end of file