39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
'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']; |