forked from enviPath/enviPy
Current Dev State
This commit is contained in:
39
static/js/ketcher2/node_modules/validator/lib/isIn.js
generated
vendored
Normal file
39
static/js/ketcher2/node_modules/validator/lib/isIn.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
||||
|
||||
exports.default = isIn;
|
||||
|
||||
var _assertString = require('./util/assertString');
|
||||
|
||||
var _assertString2 = _interopRequireDefault(_assertString);
|
||||
|
||||
var _toString = require('./util/toString');
|
||||
|
||||
var _toString2 = _interopRequireDefault(_toString);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function isIn(str, options) {
|
||||
(0, _assertString2.default)(str);
|
||||
var i = void 0;
|
||||
if (Object.prototype.toString.call(options) === '[object Array]') {
|
||||
var array = [];
|
||||
for (i in options) {
|
||||
if ({}.hasOwnProperty.call(options, i)) {
|
||||
array[i] = (0, _toString2.default)(options[i]);
|
||||
}
|
||||
}
|
||||
return array.indexOf(str) >= 0;
|
||||
} else if ((typeof options === 'undefined' ? 'undefined' : _typeof(options)) === 'object') {
|
||||
return options.hasOwnProperty(str);
|
||||
} else if (options && typeof options.indexOf === 'function') {
|
||||
return options.indexOf(str) >= 0;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
module.exports = exports['default'];
|
||||
Reference in New Issue
Block a user