Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-index-x

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-index-x - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

552

dist/is-index-x.js

@@ -5,9 +5,9 @@ /*!

"copywrite": "Copyright (c) 2017",
"date": "2019-08-14T15:22:03.227Z",
"date": "2019-08-20T19:48:19.744Z",
"describe": "",
"description": "Determine whether the passed value is a zero based index.",
"file": "is-index-x.js",
"hash": "9131ec2c0dc3fa8da25f",
"hash": "9e11d607748cadf5b187",
"license": "MIT",
"version": "2.1.0"
"version": "2.1.1"
}

@@ -203,16 +203,21 @@ */

"use strict";
/*!
* is-primitive <https://github.com/jonschlinkert/is-primitive>
*
* Copyright (c) 2014-present, Jon Schlinkert.
* Released under the MIT License.
*/
var strValue = String.prototype.valueOf;
var tryStringObject = function tryStringObject(value) {
try {
strValue.call(value);
return true;
} catch (e) {
return false;
}
};
var toStr = Object.prototype.toString;
var strClass = '[object String]';
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
module.exports = function isPrimitive(val) {
if (typeof val === 'object') {
return val === null;
}
return typeof val !== 'function';
module.exports = function isString(value) {
if (typeof value === 'string') { return true; }
if (typeof value !== 'object') { return false; }
return hasToStringTag ? tryStringObject(value) : toStr.call(value) === strClass;
};

@@ -351,3 +356,363 @@

// CONCATENATED MODULE: ./node_modules/is-primitive-x/dist/is-primitive-x.esm.js
function _typeof(obj) { 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); }
/**
* Returns true if the value is a primitive.
*
* @param {*} [val] - The value to test.
* @returns {boolean} True if a primitive, otherwise false..
*/
var isPrimitive = function isPrimitive(val) {
return _typeof(val) === 'object' ? val === null : typeof val !== 'function';
};
/* harmony default export */ var is_primitive_x_esm = (isPrimitive);
// EXTERNAL MODULE: ./node_modules/is-string/index.js
var is_string = __webpack_require__(1);
var is_string_default = /*#__PURE__*/__webpack_require__.n(is_string);
// CONCATENATED MODULE: ./node_modules/has-boxed-string-x/dist/has-boxed-string-x.esm.js
var has_boxed_string_x_esm_string = 'a';
var boxedString = {}.constructor(has_boxed_string_x_esm_string);
/**
* Check failure of by-index access of string characters (IE < 9)
* and failure of `0 in boxedString` (Rhino).
*
* `true` if no failure; otherwise `false`.
*
* @type boolean
*/
var hasBoxed = boxedString[0] === has_boxed_string_x_esm_string && 0 in boxedString;
/* harmony default export */ var has_boxed_string_x_esm = (hasBoxed);
// CONCATENATED MODULE: ./node_modules/noop-x/dist/noop-x.esm.js
/**
* This method returns undefined.
*
* @returns {undefined} Always undefined.
*/
var noop = function noop() {};
/* eslint-disable-line lodash/prefer-noop */
/* harmony default export */ var noop_x_esm = (noop);
// CONCATENATED MODULE: ./node_modules/has-working-bind-x/dist/has-working-bind-x.esm.js
var has_working_bind_x_esm_bind = noop_x_esm.bind;
var test1 = function test1() {
var a1 = null;
var a2 = null;
var context = null;
var testThis = [];
var test1Fn = function test1Fn(arg1, arg2) {
/* eslint-disable-next-line babel/no-invalid-this */
context = this;
a1 = arg1;
a2 = arg2;
/* eslint-disable-next-line prefer-rest-params */
return arguments;
};
try {
var boundFn = has_working_bind_x_esm_bind.apply(test1Fn, [testThis, 1]);
var args = boundFn(2);
return boundFn.length === 1 && args.length === 2 && a1 === 1 && a2 === 2 && context === testThis;
} catch (e) {
return false;
}
};
var test2 = function test2() {
var a1 = null;
var a2 = null;
var context = null;
var oracle = [1, 2, 3];
var Ctr = function Ctr(arg1, arg2) {
a1 = arg1;
a2 = arg2;
context = this;
return oracle;
};
try {
var BoundFn = has_working_bind_x_esm_bind.apply(Ctr, [null]);
var returned = new BoundFn(1, 2);
return BoundFn.length === Ctr.length && returned === oracle && a1 === 1 && a2 === 2 && context !== oracle;
} catch (e) {
return false;
}
};
/**
* Indicates if the engine has a working bind function.
*
* @type {boolean}
*/
var isWorking = typeof has_working_bind_x_esm_bind === 'function' && test1() && test2();
/* harmony default export */ var has_working_bind_x_esm = (isWorking);
// CONCATENATED MODULE: ./node_modules/util-pusher-x/dist/util-pusher-x.esm.js
var EMPTY_STRING = '';
var split = EMPTY_STRING.split;
var util_pusher_x_esm_max = Math.max;
var util_pusher_x_esm_bind = is_primitive_x_esm.bind,
util_pusher_x_esm_call = is_primitive_x_esm.call;
var stringSplit = function stringSplit(string, pattern) {
// noinspection JSUnresolvedFunction
return split.call(string, pattern);
};
var $split = has_working_bind_x_esm ? util_pusher_x_esm_bind.call(util_pusher_x_esm_call, split) : stringSplit;
var util_pusher_x_esm_getIterable = function getIterable(arrayLike) {
// noinspection JSUnresolvedFunction
return is_string_default()(arrayLike) ? $split(arrayLike, EMPTY_STRING) : arrayLike;
}; // eslint-disable jsdoc/no-undefined-types
// noinspection JSCommentMatchesSignature
/**
* This pushes or concatenates into a new or existing array.
*
* @param {Array} arrayLike - The source.
* @param {number} [from=0] - The from source index.
* @param {Array} [target=[]] - The target array.
* @returns {*} The target array.
*/
// eslint-enable jsdoc/no-undefined-types
var util_pusher_x_esm_pusher = function pusher(arrayLike, from) {
/* eslint-disable-next-line prefer-rest-params */
var target = arguments.length > 2 ? arguments[2] : [];
if (typeof arrayLike !== 'string' && is_primitive_x_esm(arrayLike)) {
return target;
}
var iterable = has_boxed_string_x_esm ? arrayLike : util_pusher_x_esm_getIterable(arrayLike);
var length = iterable.length;
for (var i = util_pusher_x_esm_max(0, from) || 0; i < length; i += 1) {
target[target.length] = arrayLike[i];
}
return target;
};
/* harmony default export */ var util_pusher_x_esm = (util_pusher_x_esm_pusher);
// CONCATENATED MODULE: ./node_modules/simple-bind-x/dist/simple-bind-x.esm.js
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
var nativeBind = util_pusher_x_esm.bind,
simple_bind_x_esm_call = util_pusher_x_esm.call;
var ERROR_MESSAGE = 'bind called on incompatible ';
var simple_bind_x_esm_object = {};
var ObjectCtr = simple_bind_x_esm_object.constructor;
var toStringTag = simple_bind_x_esm_object.toString;
var funcType = '[object Function]';
var ZERO = 0;
var argsOffset = 2;
var getMax = function getMax(a, b) {
return a >= b ? a : b;
};
var simple_bind_x_esm_assertIsFunction = function assertIsFunction(value) {
if (typeof value !== 'function' && toStringTag.apply(value) !== funcType) {
throw new TypeError(ERROR_MESSAGE + value);
}
};
var boundFns = [function zero(binder) {
return function boundFn() {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments));
};
}, function one(binder, boundLength) {
return function boundFn(a) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a]));
};
}, function two(binder, boundLength) {
return function boundFn(a, b) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b]));
};
}, function three(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c]));
};
}, function four(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c, d) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c, d]));
};
}, function five(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c, d, e) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c, d, e]));
};
}, function six(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c, d, e, f) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c, d, e, f]));
};
}, function seven(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c, d, e, f, g) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c, d, e, f, g]));
};
}, function eight(binder, boundLength) {
/* eslint-disable-next-line max-params */
return function boundFn(a, b, c, d, e, f, g, h) {
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
return binder.apply(this, util_pusher_x_esm(arguments, boundLength, [a, b, c, d, e, f, g, h]));
};
}];
var getBoundFn = function getBoundFn(args) {
var _args = _slicedToArray(args, 3),
binder = _args[0],
target = _args[1],
bindArgs = _args[2];
var boundLength = getMax(ZERO, target.length - getMax(ZERO, bindArgs.length - argsOffset));
var fn = boundFns[boundLength];
var boundFn = fn ? fn(binder, boundLength) : boundFns[ZERO](binder);
if (target.prototype) {
/* eslint-disable-next-line lodash/prefer-noop */
var Empty = function Empty() {};
Empty.prototype = target.prototype;
boundFn.prototype = new Empty();
Empty.prototype = null;
}
return boundFn;
};
var getResult = function getResult(target, boundArgs) {
/* eslint-disable-next-line babel/no-invalid-this */
var result = target.apply(this, boundArgs);
/* eslint-disable-next-line babel/no-invalid-this,babel/new-cap */
return ObjectCtr(result) === result ? result : this;
};
var implementation = function bind(target, thisArg) {
simple_bind_x_esm_assertIsFunction(target);
/* eslint-disable-next-line prefer-rest-params */
var bindArgs = arguments;
var bound;
var binder = function binder() {
/* eslint-disable-next-line prefer-rest-params */
var boundArgs = util_pusher_x_esm(arguments, ZERO, util_pusher_x_esm(bindArgs, argsOffset));
/* eslint-disable-next-line babel/no-invalid-this */
return this instanceof bound ? getResult.apply(this, [target, boundArgs]) : target.apply(thisArg, boundArgs);
};
bound = getBoundFn([binder, target, bindArgs]);
return bound;
};
/**
* The bind() method creates a new function that, when called, has its this
* keyword set to the provided value, with a given sequence of arguments
* preceding any provided when the new function is called.
*
* @function bind
* @param {Function} target - The target function.
* @param {*} [thisArg] - The value to be passed as the this parameter to the target
* function when the bound function is called. The value is ignored if the
* bound function is constructed using the new operator.
* @param {...*} [args] - Arguments to prepend to arguments provided to the bound
* function when invoking the target function.
* @throws {TypeError} If target is not a function.
* @returns {Function} The bound function.
*/
var $bind = has_working_bind_x_esm ? simple_bind_x_esm_call.bind(nativeBind) : implementation;
/* harmony default export */ var simple_bind_x_esm = ($bind);
// CONCATENATED MODULE: ./node_modules/simple-call-x/dist/simple-call-x.esm.js
var $TypeError = TypeError;
var nativeApply = simple_bind_x_esm.apply,
nativeCall = simple_bind_x_esm.call;
var $apply = simple_bind_x_esm(nativeCall, nativeApply);
var simple_call_x_esm_toStringTag = simple_bind_x_esm(nativeApply, {}.toString);
var simple_call_x_esm_ERROR_MESSAGE = ' is not a function';
var simple_call_x_esm_funcType = '[object Function]';
var simple_call_x_esm_assertIsFunction = function assertIsFunction(value) {
if (typeof value !== 'function' && simple_call_x_esm_toStringTag(value) !== simple_call_x_esm_funcType) {
throw new $TypeError(value + simple_call_x_esm_ERROR_MESSAGE);
}
return value;
}; // eslint-disable jsdoc/check-param-names
// noinspection JSCommentMatchesSignature
/**
* The abstract operation Call is used to call the [[Call]] internal method of a function object.
*
* @function call
* @param {Function} F - The target function.
* @param {*} [V] - The context.
* @param {Array} [args] - Argument to call the function with.
* @throws {TypeError} If target is not a function.
* @returns {*} The the result of invoking the function.
* @see https://www.ecma-international.org/ecma-262/6.0/#sec-call
*/
// eslint-enable jsdoc/check-param-names
var simple_call_x_esm_call = function call(F, V) {
/* eslint-disable-next-line prefer-rest-params */
return $apply(simple_call_x_esm_assertIsFunction(F), V, util_pusher_x_esm(arguments[2]));
};
/* harmony default export */ var simple_call_x_esm = (simple_call_x_esm_call);
// CONCATENATED MODULE: ./node_modules/attempt-x/dist/attempt-x.esm.js
// eslint-disable jsdoc/check-param-names
// noinspection JSCommentMatchesSignature
/**

@@ -358,2 +723,3 @@ * This method attempts to invoke the function, returning either the result or

*
* @function attempt
* @param {Function} [fn] - The function to attempt.

@@ -363,13 +729,11 @@ * @param {...*} [args] - The arguments to invoke the function with.

*/
var attempt = function attempt(fn) {
// eslint-disable jsdoc/check-param-names
var attempt_x_esm_attempt = function attempt(fn) {
try {
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
return {
threw: false,
/* eslint-disable-next-line babel/no-invalid-this */
value: fn.apply(this, args)
/* eslint-disable-next-line babel/no-invalid-this,prefer-rest-params */
value: simple_call_x_esm(fn, this, util_pusher_x_esm(arguments, 1))
};

@@ -384,3 +748,3 @@ } catch (e) {

/* harmony default export */ var attempt_x_esm = (attempt);
/* harmony default export */ var attempt_x_esm = (attempt_x_esm_attempt);

@@ -442,6 +806,2 @@

// EXTERNAL MODULE: ./node_modules/is-primitive/index.js
var is_primitive = __webpack_require__(1);
var is_primitive_default = /*#__PURE__*/__webpack_require__.n(is_primitive);
// EXTERNAL MODULE: ./node_modules/is-date-object/index.js

@@ -465,4 +825,39 @@ var is_date_object = __webpack_require__(2);

// CONCATENATED MODULE: ./node_modules/simple-methodize-x/dist/simple-methodize-x.esm.js
var simple_methodize_x_esm_toStringTag = {}.toString;
var simple_methodize_x_esm_ERROR_MESSAGE = 'methodize called on incompatible ';
var simple_methodize_x_esm_funcType = '[object Function]';
var simple_methodize_x_esm_assertIsFunction = function assertIsFunction(value) {
if (typeof value !== 'function' && simple_call_x_esm(simple_methodize_x_esm_toStringTag, value) !== simple_methodize_x_esm_funcType) {
throw new TypeError(simple_methodize_x_esm_ERROR_MESSAGE + value);
}
return value;
};
/**
* Methodize a prototype method. Compliant to 8 arguments.
*
* @param {Function} prototypeMethod - The prototype method to methodize.
* @throws {TypeError} If target is not a function.
* @returns {Function} The static method.
*/
var simple_methodize_x_esm_methodize = function methodize(prototypeMethod) {
simple_methodize_x_esm_assertIsFunction(prototypeMethod);
return function methodized() {
/* eslint-disable-next-line prefer-rest-params */
return simple_call_x_esm(prototypeMethod, arguments[0], util_pusher_x_esm(arguments, 1));
};
};
/* harmony default export */ var simple_methodize_x_esm = (simple_methodize_x_esm_methodize);
// CONCATENATED MODULE: ./node_modules/to-string-tag-x/dist/to-string-tag-x.esm.js
var nativeObjectToString = {}.toString;
var methodizedToString = simple_methodize_x_esm({}.toString);
/**

@@ -476,3 +871,3 @@ * The `toStringTag` method returns "[object type]", where type is the

var toStringTag = function toStringTag(value) {
var to_string_tag_x_esm_toStringTag = function toStringTag(value) {
if (value === null) {

@@ -486,6 +881,6 @@ return '[object Null]';

return nativeObjectToString.call(value);
return methodizedToString(value);
};
/* harmony default export */ var to_string_tag_x_esm = (toStringTag);
/* harmony default export */ var to_string_tag_x_esm = (to_string_tag_x_esm_toStringTag);

@@ -547,4 +942,4 @@

var ERROR_MESSAGE = 'Cannot convert a Symbol value to a string';
var to_string_x_esm_castString = ERROR_MESSAGE.constructor;
var to_string_x_esm_ERROR_MESSAGE = 'Cannot convert a Symbol value to a string';
var to_string_x_esm_castString = to_string_x_esm_ERROR_MESSAGE.constructor;
/**

@@ -560,3 +955,3 @@ * The abstract operation ToString converts argument to a value of type String.

if (is_symbol_default()(value)) {
throw new TypeError(ERROR_MESSAGE);
throw new TypeError(to_string_x_esm_ERROR_MESSAGE);
}

@@ -904,6 +1299,7 @@

var EMPTY_STRING = '';
var trim_left_x_esm_EMPTY_STRING = '';
var RegExpCtr = /none/.constructor;
var reLeft = new RegExpCtr("^[".concat(white_space_x_esm, "]+"));
var replace = EMPTY_STRING.replace;
var methodizedReplace = simple_methodize_x_esm(trim_left_x_esm_EMPTY_STRING.replace);
/**

@@ -918,3 +1314,3 @@ * This method removes whitespace from the start of a string. (ES2019).

var trim_left_x_esm_trimStart = function trimStart(string) {
return replace.call(require_coercible_to_string_x_esm(string), reLeft, EMPTY_STRING);
return methodizedReplace(require_coercible_to_string_x_esm(string), reLeft, trim_left_x_esm_EMPTY_STRING);
};

@@ -928,6 +1324,7 @@

var trim_right_x_esm_EMPTY_STRING = '';
var trim_right_x_esm_RegExpCtr = /none/.constructor;
var reRight2018 = new trim_right_x_esm_RegExpCtr("[".concat(white_space_x_esm, "]+$"));
var trim_right_x_esm_replace = trim_right_x_esm_EMPTY_STRING.replace;
var reRight = new trim_right_x_esm_RegExpCtr("[".concat(white_space_x_esm, "]+$"));
var trim_right_x_esm_methodizedReplace = simple_methodize_x_esm(trim_right_x_esm_EMPTY_STRING.replace);
/**

@@ -942,3 +1339,3 @@ * This method removes whitespace from the end of a string. (ES2019).

var trim_right_x_esm_trimEnd = function trimEnd(string) {
return trim_right_x_esm_replace.call(require_coercible_to_string_x_esm(string), reRight2018, trim_right_x_esm_EMPTY_STRING);
return trim_right_x_esm_methodizedReplace(require_coercible_to_string_x_esm(string), reRight, trim_right_x_esm_EMPTY_STRING);
};

@@ -971,6 +1368,7 @@

var SPACE = ' ';
var normalize_space_x_esm_RegExpCtr = /none/.constructor;
var reNormalize2018 = new normalize_space_x_esm_RegExpCtr("[".concat(white_space_x_esm, "]+"), 'g');
var normalize_space_x_esm_replace = SPACE.replace;
var reNormalize = new normalize_space_x_esm_RegExpCtr("[".concat(white_space_x_esm, "]+"), 'g');
var normalize_space_x_esm_methodizedReplace = simple_methodize_x_esm(SPACE.replace);
/**

@@ -986,3 +1384,3 @@ * This method strips leading and trailing white-space from a string,

var normalize_space_x_esm_normalizeSpace = function normalizeSpace(string) {
return normalize_space_x_esm_replace.call(trim_x_esm(string), reNormalize2018, SPACE);
return normalize_space_x_esm_methodizedReplace(trim_x_esm(string), reNormalize, SPACE);
};

@@ -996,5 +1394,6 @@

var replace_comments_x_esm_EMPTY_STRING = '';
var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm;
var replace_comments_x_esm_replace = replace_comments_x_esm_EMPTY_STRING.replace;
var replace_comments_x_esm_methodizedReplace = simple_methodize_x_esm(replace_comments_x_esm_EMPTY_STRING.replace);
/**

@@ -1011,3 +1410,3 @@ * This method replaces comments in a string.

var replace_comments_x_esm_replaceComments = function replaceComments(string, replacement) {
return replace_comments_x_esm_replace.call(require_coercible_to_string_x_esm(string), STRIP_COMMENTS, arguments.length > 1 ? to_string_x_esm(replacement) : replace_comments_x_esm_EMPTY_STRING);
return replace_comments_x_esm_methodizedReplace(require_coercible_to_string_x_esm(string), STRIP_COMMENTS, arguments.length > 1 ? to_string_x_esm(replacement) : replace_comments_x_esm_EMPTY_STRING);
};

@@ -1026,5 +1425,6 @@

var FunctionCtr = attempt_x_esm.constructor;
var is_function_x_esm_SPACE = ' ';
var fToString = attempt_x_esm.toString;
var methodizedFunctionToString = simple_methodize_x_esm(attempt_x_esm.toString);
var funcTag = '[object Function]';

@@ -1034,3 +1434,3 @@ var genTag = '[object GeneratorFunction]';

var ctrRx = /^class /;
var test = ctrRx.test;
var methodizedTest = simple_methodize_x_esm(ctrRx.test);
var hasNativeClass = attempt_x_esm(function attemptee() {

@@ -1042,3 +1442,3 @@ /* eslint-disable-next-line babel/new-cap */

var is_function_x_esm_testClassString = function testClassString(value) {
return test.call(ctrRx, normalize_space_x_esm(replace_comments_x_esm(fToString.call(value), is_function_x_esm_SPACE)));
return methodizedTest(ctrRx, normalize_space_x_esm(replace_comments_x_esm(methodizedFunctionToString(value), is_function_x_esm_SPACE)));
};

@@ -1066,3 +1466,5 @@

return attempt_x_esm.call(value, fToString).threw === false;
return attempt_x_esm(function attemptee() {
return methodizedFunctionToString(value);
}).threw === false;
};

@@ -1085,3 +1487,3 @@

var is_function_x_esm_isFunction = function isFunction(value, allowClass) {
if (is_primitive_default()(value)) {
if (is_primitive_x_esm(value)) {
return false;

@@ -1112,7 +1514,8 @@ }

var ZERO = 0;
var to_primitive_x_esm_ZERO = 0;
var ONE = 1;
/* eslint-disable-next-line no-void */
var UNDEFINED = void ZERO;
var UNDEFINED = void to_primitive_x_esm_ZERO;
var NUMBER = 'number';

@@ -1122,3 +1525,3 @@ var STRING = 'string';

var StringCtr = STRING.constructor;
var NumberCtr = ZERO.constructor;
var NumberCtr = to_primitive_x_esm_ZERO.constructor;
/* eslint-disable-next-line compat/compat */

@@ -1152,12 +1555,10 @@

var methodNames = hint === STRING ? toStringOrder : toNumberOrder;
var method;
var result;
for (var i = ZERO; i < orderLength; i += ONE) {
method = ordinary[methodNames[i]];
for (var i = to_primitive_x_esm_ZERO; i < orderLength; i += ONE) {
var method = ordinary[methodNames[i]];
if (is_function_x_esm(method)) {
result = method.call(ordinary);
var result = simple_call_x_esm(method, ordinary);
if (is_primitive_default()(result)) {
if (is_primitive_x_esm(result)) {
return result;

@@ -1238,5 +1639,5 @@ }

hint = obj.hint;
var result = exoticToPrim.call(input, hint);
var result = simple_call_x_esm(exoticToPrim, input, [hint]);
if (is_primitive_default()(result)) {
if (is_primitive_x_esm(result)) {
return result;

@@ -1270,3 +1671,3 @@ }

var to_primitive_x_esm_toPrimitive = function toPrimitive(input, preferredType) {
if (is_primitive_default()(input)) {
if (is_primitive_x_esm(input)) {
return input;

@@ -1301,11 +1702,11 @@ }

var nativeParseInt = parseInt;
/** @type {Function} */
var castNumber = 0 .constructor; // noinspection JSPotentiallyInvalidConstructorUsage
var _ref = '',
charAt = _ref.charAt;
var castNumber = 0 .constructor;
var BAD_CHAR = "\u180E";
var methodizedCharAt = simple_methodize_x_esm(BAD_CHAR.charAt);
var hexRegex = /^[-+]?0[xX]/;
var parse_int_x_esm_test = hexRegex.test;
var parse_int_x_esm_methodizedTest = simple_methodize_x_esm(hexRegex.test);
/**

@@ -1332,7 +1733,7 @@ * This method parses a string argument and returns an integer of the specified

if (charAt.call(str, 0) === "\u180E") {
if (methodizedCharAt(str, 0) === BAD_CHAR) {
return nan_x_esm;
}
return nativeParseInt(str, castNumber(radix) || (parse_int_x_esm_test.call(hexRegex, str) ? 16 : 10));
return nativeParseInt(str, castNumber(radix) || (parse_int_x_esm_methodizedTest(hexRegex, str) ? 16 : 10));
};

@@ -1349,2 +1750,3 @@

var binaryRadix = 2;

@@ -1355,3 +1757,3 @@ var octalRadix = 8;

var to_number_x_esm_castNumber = testCharsCount.constructor;
var pStrSlice = to_number_x_esm_ERROR_MESSAGE.slice;
var methodizedStringSlice = simple_methodize_x_esm(to_number_x_esm_ERROR_MESSAGE.slice);
var binaryRegex = /^0b[01]+$/i;

@@ -1361,6 +1763,6 @@ var RegExpConstructor = binaryRegex.constructor; // Note that in IE 8, RegExp.prototype.test doesn't seem to exist: ie, "test" is

var to_number_x_esm_test = binaryRegex.test;
var to_number_x_esm_methodizedTest = simple_methodize_x_esm(binaryRegex.test);
var isBinary = function isBinary(value) {
return to_number_x_esm_test.call(binaryRegex, value);
return to_number_x_esm_methodizedTest(binaryRegex, value);
};

@@ -1371,3 +1773,3 @@

var isOctal = function isOctal(value) {
return to_number_x_esm_test.call(octalRegex, value);
return to_number_x_esm_methodizedTest(octalRegex, value);
};

@@ -1378,3 +1780,3 @@

var hasNonWS = function hasNonWS(value) {
return to_number_x_esm_test.call(nonWSregex, value);
return to_number_x_esm_methodizedTest(nonWSregex, value);
};

@@ -1385,3 +1787,3 @@

var isInvalidHexLiteral = function isInvalidHexLiteral(value) {
return to_number_x_esm_test.call(invalidHexLiteral, value);
return to_number_x_esm_methodizedTest(invalidHexLiteral, value);
};

@@ -1398,3 +1800,3 @@

var to_number_x_esm_parseBase = function parseBase(value, radix) {
return parse_int_x_esm(pStrSlice.call(value, testCharsCount), radix);
return parse_int_x_esm(methodizedStringSlice(value, testCharsCount), radix);
};

@@ -1401,0 +1803,0 @@

14

dist/is-index-x.min.js

@@ -5,18 +5,12 @@ /*!

"copywrite": "Copyright (c) 2017",
"date": "2019-08-14T15:22:03.227Z",
"date": "2019-08-20T19:48:19.744Z",
"describe": "",
"description": "Determine whether the passed value is a zero based index.",
"file": "is-index-x.min.js",
"hash": "18af3056ea804ee82630",
"hash": "efbcd2e044d528aae6af",
"license": "MIT",
"version": "2.1.0"
"version": "2.1.1"
}
*/
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.isIndexX=t():e.isIndexX=t()}(function(){"use strict";var e,t={}.constructor,n=t.prototype,r=t.defineProperty,o=function(){return"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:void 0},i=function(){return this};try{return r?r(n,"$$globalThis$$",{get:i,configurable:!0}):n.__defineGetter__("$$globalThis$$",i),e="undefined"==typeof $$globalThis$$?o():$$globalThis$$,delete n.$$globalThis$$,e}catch(e){return o()}}(),function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=6)}([function(e,t,n){"use strict";var r=Object.prototype.toString;if(n(3)()){var o=Symbol.prototype.toString,i=/^Symbol\(.*\)$/;e.exports=function(e){if("symbol"==typeof e)return!0;if("[object Symbol]"!==r.call(e))return!1;try{return function(e){return"symbol"==typeof e.valueOf()&&i.test(o.call(e))}(e)}catch(e){return!1}}}else e.exports=function(e){return!1}},function(e,t,n){"use strict";
/*!
* is-primitive <https://github.com/jonschlinkert/is-primitive>
*
* Copyright (c) 2014-present, Jon Schlinkert.
* Released under the MIT License.
*/e.exports=function(e){return"object"==typeof e?null===e:"function"!=typeof e}},function(e,t,n){"use strict";var r=Date.prototype.getDay,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;e.exports=function(e){return"object"==typeof e&&null!==e&&(i?function(e){try{return r.call(e),!0}catch(e){return!1}}(e):"[object Date]"===o.call(e))}},function(e,t,n){"use strict";(function(t){var r=t.Symbol,o=n(5);e.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}}).call(this,n(4))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(e,t);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},function(e,t,n){"use strict";n.r(t);var r=function(e){try{for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return{threw:!1,value:e.apply(this,n)}}catch(e){return{threw:!0,value:e}}},o=n(0),i=n.n(o);for(var s=r(function(){return function(e,t){if(e!==t)throw new TypeError("Cannot instantiate an arrow function")}(this,void 0),"function"==typeof Symbol&&i()(Symbol(""))}.bind(void 0)),c=!1===s.threw&&!0===s.value,u=c&&Symbol.prototype.toString,a="function"==typeof u&&i.a,f="".constructor,l=function(e){return a&&a(e)?u.call(e):f(e)},p=n(1),d=n.n(p),y=n(2),b=n.n(y),g=function(e){return!!e},m={}.toString,v=function(e){return null===e?"[object Null]":void 0===e?"[object Undefined]":m.call(e)},h=c&&i()(Symbol.toStringTag),w=function(e){return null==e},S=function(e){if(w(e))throw new TypeError("Cannot call method on ".concat(e));return e},j="Cannot convert a Symbol value to a string",O=j.constructor,x=function(e){if(i()(e))throw new TypeError(j);return O(e)},$=function(e){return x(S(e))},T=[{code:9,description:"Tab",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\t"},{code:10,description:"Line Feed",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\n"},{code:11,description:"Vertical Tab",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\v"},{code:12,description:"Form Feed",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\f"},{code:13,description:"Carriage Return",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\r"},{code:32,description:"Space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:160,description:"No-break space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:5760,description:"Ogham space mark",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:6158,description:"Mongolian vowel separator",es5:!0,es2015:!0,es2016:!0,es2017:!1,es2018:!1,string:"᠎"},{code:8192,description:"En quad",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8193,description:"Em quad",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8194,description:"En space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8195,description:"Em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8196,description:"Three-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8197,description:"Four-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8198,description:"Six-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8199,description:"Figure space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8200,description:"Punctuation space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8201,description:"Thin space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8202,description:"Hair space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8232,description:"Line separator",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\u2028"},{code:8233,description:"Paragraph separator",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\u2029"},{code:8239,description:"Narrow no-break space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8287,description:"Medium mathematical space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:12288,description:"Ideographic space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:65279,description:"Byte Order Mark",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\ufeff"}],P="",E=T.length,M=0;M<E;M+=1)T[M].es2016&&T[M].string,T[M].es2018&&(P+=T[M].string);var N=P,_=new(0,/none/.constructor)("^[".concat(N,"]+")),F="".replace,k=function(e){return F.call($(e),_,"")},C=new(0,/none/.constructor)("[".concat(N,"]+$")),D="".replace,I=function(e){return D.call($(e),C,"")},A=function(e){return k(I(e))},X=new(0,/none/.constructor)("[".concat(N,"]+"),"g"),q=" ".replace,G=function(e){return q.call(A(e),X," ")},L=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm,R="".replace,B=function(e,t){return R.call($(e),L,arguments.length>1?x(t):"")},H=r.constructor,U=r.toString,V=/^class /,z=V.test,J=!1===r(function(){return H('"use strict"; return class My {};')()}).threw,K=function(e){return z.call(V,G(B(U.call(e)," ")))},Q=function(e){var t=r(K,e);return!1===t.threw&&t.value},W=function(e,t){return!d()(e)&&(h?function(e,t){return!(J&&!1===t&&Q(e)||!1!==r.call(e,U).threw)}(e,g(t)):(!J||!1!==g(t)||!Q(e))&&function(e){var t=v(e);return"[object Function]"===t||"[object GeneratorFunction]"===t||"[object AsyncFunction]"===t}(e))},Y="string".constructor,Z=(0).constructor,ee=c&&Symbol.toPrimitive,te=c&&Symbol.prototype.valueOf,ne=["toString","valueOf"],re=["valueOf","toString"],oe=function(e,t){S(e),function(e){if("string"!=typeof e||"number"!==e&&"string"!==e)throw new TypeError('hint must be "string" or "number"')}(t);for(var n,r,o="string"===t?ne:re,i=0;i<2;i+=1)if(n=e[o[i]],W(n)&&(r=n.call(e),d()(r)))return r;throw new TypeError("No default value")},ie=function(e,t){if(t){if(e===Y)return"string";if(e===Z)return"number"}return"default"},se=function(e){if(c){if(ee)return function(e,t){var n=e[t];if(!1===w(n)){if(!1===W(n))throw new TypeError("".concat(n," returned for property ").concat(t," of object ").concat(e," is not a function"));return n}}(e,ee);if(i()(e))return te}},ce=function(e){var t=e.exoticToPrim,n=e.input,r=e.hint,o=t.call(n,r);if(d()(o))return o;throw new TypeError("unable to convert exotic object to primitive")},ue=function(e,t){var n="default"===t&&(b()(e)||i()(e))?"string":t;return oe(e,"default"===n?"number":n)},ae=function(e,t){if(d()(e))return e;var n=ie(t,arguments.length>1),r=se(e);return void 0===r?ue(e,n):ce({exoticToPrim:r,input:e,hint:n})},fe=parseInt,le=(0).constructor,pe="".charAt,de=/^[-+]?0[xX]/,ye=de.test,be=function(e,t){var n=k(x(e));return"᠎"===pe.call(n,0)?NaN:fe(n,le(t)||(ye.call(de,n)?16:10))},ge=2..constructor,me="Cannot convert a Symbol value to a number".slice,ve=/^0b[01]+$/i,he=ve.test,we=/^0o[0-7]+$/i,Se=new(0,ve.constructor)("[…᠎​￾]","g"),je=/^[-+]0x[0-9a-f]+$/i,Oe=function(e,t){return be(me.call(e,2),t)},xe=function(e,t){return function(e){return he.call(ve,e)}(t)?e(Oe(t,2)):function(e){return he.call(we,e)}(t)?e(Oe(t,8)):null},$e=function(e,t){var n=xe(e,t);if(null!==n)return n;if(function(e){return he.call(Se,e)}(t)||function(e){return he.call(je,e)}(t))return NaN;var r=A(t);return r!==t?e(r):null},Te=function e(t){var n=function(e){if(i()(e))throw new TypeError("Cannot convert a Symbol value to a number");return e}(ae(t,ge));if("string"==typeof n){var r=$e(e,n);if(null!==r)return r}return ge(n)},Pe=function(e){return e!=e},Ee=function(e){return"number"==typeof e&&!1===Pe(e)&&e!==1/0&&e!==-1/0},Me=function(e){var t=Te(e);return 0===t||Pe(t)?t:t>0?1:-1},Ne=Math.abs,_e=Math.floor,Fe=function(e){var t=Te(e);return Pe(t)?0:0===t||!1===Ee(t)?t:Me(t)*_e(Ne(t))},ke=function(e){var t=Te(e[1]),n=e.length<3?{max:t,min:0}:{max:Te(e[2]),min:t};if(n.min>n.max)throw new RangeError('"min" must be less than "max"');return n},Ce=function(e){var t=Te(e);if(arguments.length<2)return t;var n=ke(arguments),r=n.max,o=n.min;return t<o?o:t>r?r:t},De=/^(?:0|[1-9]\d*)$/,Ie=De.test;t.default=function(e,t){var n=l(e);if(!1===Ie.call(De,n))return!1;var r=Te(n);return arguments.length>1?r<Ce(Fe(t),9007199254740991):r<9007199254740991}}])});
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.isIndexX=n():t.isIndexX=n()}(function(){"use strict";var t,n={}.constructor,e=n.prototype,r=n.defineProperty,o=function(){return"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:void 0},i=function(){return this};try{return r?r(e,"$$globalThis$$",{get:i,configurable:!0}):e.__defineGetter__("$$globalThis$$",i),t="undefined"==typeof $$globalThis$$?o():$$globalThis$$,delete e.$$globalThis$$,t}catch(t){return o()}}(),function(){return function(t){var n={};function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)e.d(r,o,function(n){return t[n]}.bind(null,o));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=6)}([function(t,n,e){"use strict";var r=Object.prototype.toString;if(e(3)()){var o=Symbol.prototype.toString,i=/^Symbol\(.*\)$/;t.exports=function(t){if("symbol"==typeof t)return!0;if("[object Symbol]"!==r.call(t))return!1;try{return function(t){return"symbol"==typeof t.valueOf()&&i.test(o.call(t))}(t)}catch(t){return!1}}}else t.exports=function(t){return!1}},function(t,n,e){"use strict";var r=String.prototype.valueOf,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(t){return"string"==typeof t||"object"==typeof t&&(i?function(t){try{return r.call(t),!0}catch(t){return!1}}(t):"[object String]"===o.call(t))}},function(t,n,e){"use strict";var r=Date.prototype.getDay,o=Object.prototype.toString,i="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;t.exports=function(t){return"object"==typeof t&&null!==t&&(i?function(t){try{return r.call(t),!0}catch(t){return!1}}(t):"[object Date]"===o.call(t))}},function(t,n,e){"use strict";(function(n){var r=n.Symbol,o=e(5);t.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}}).call(this,e(4))},function(t,n){var e;e=function(){return this}();try{e=e||new Function("return this")()}catch(t){"object"==typeof window&&(e=window)}t.exports=e},function(t,n,e){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},n=Symbol("test"),e=Object(n);if("string"==typeof n)return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;for(n in t[n]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var r=Object.getOwnPropertySymbols(t);if(1!==r.length||r[0]!==n)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,n))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(t,n);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},function(t,n,e){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}e.r(n);var o=function(t){return"object"===r(t)?null===t:"function"!=typeof t},i=e(1),u=e.n(i),c={}.constructor("a"),s="a"===c[0]&&0 in c,f=function(){}.bind,a="function"==typeof f&&function(){var t=null,n=null,e=null,r=[];try{var o=f.apply(function(r,o){return e=this,t=r,n=o,arguments},[r,1]),i=o(2);return 1===o.length&&2===i.length&&1===t&&2===n&&e===r}catch(t){return!1}}()&&function(){var t=null,n=null,e=null,r=[1,2,3],o=function(o,i){return t=o,n=i,e=this,r};try{var i=f.apply(o,[null]),u=new i(1,2);return i.length===o.length&&u===r&&1===t&&2===n&&e!==r}catch(t){return!1}}(),l="".split,p=Math.max,y=o.bind,b=o.call,d=a?y.call(b,l):function(t,n){return l.call(t,n)},g=function(t){return u()(t)?d(t,""):t},m=function(t,n){var e=arguments.length>2?arguments[2]:[];if("string"!=typeof t&&o(t))return e;for(var r=s?t:g(t),i=r.length,u=p(0,n)||0;u<i;u+=1)e[e.length]=t[u];return e};function h(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,n){var e=[],r=!0,o=!1,i=void 0;try{for(var u,c=t[Symbol.iterator]();!(r=(u=c.next()).done)&&(e.push(u.value),!n||e.length!==n);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==c.return||c.return()}finally{if(o)throw i}}return e}(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var v=m.bind,S=m.call,w={},j=w.constructor,O=w.toString,x=function(t,n){return t>=n?t:n},T=function(t){if("function"!=typeof t&&"[object Function]"!==O.apply(t))throw new TypeError("bind called on incompatible "+t)},$=[function(t){return function(){return t.apply(this,m(arguments))}},function(t,n){return function(e){return t.apply(this,m(arguments,n,[e]))}},function(t,n){return function(e,r){return t.apply(this,m(arguments,n,[e,r]))}},function(t,n){return function(e,r,o){return t.apply(this,m(arguments,n,[e,r,o]))}},function(t,n){return function(e,r,o,i){return t.apply(this,m(arguments,n,[e,r,o,i]))}},function(t,n){return function(e,r,o,i,u){return t.apply(this,m(arguments,n,[e,r,o,i,u]))}},function(t,n){return function(e,r,o,i,u,c){return t.apply(this,m(arguments,n,[e,r,o,i,u,c]))}},function(t,n){return function(e,r,o,i,u,c,s){return t.apply(this,m(arguments,n,[e,r,o,i,u,c,s]))}},function(t,n){return function(e,r,o,i,u,c,s,f){return t.apply(this,m(arguments,n,[e,r,o,i,u,c,s,f]))}}],E=function(t){var n=h(t,3),e=n[0],r=n[1],o=n[2],i=x(0,r.length-x(0,o.length-2)),u=$[i],c=u?u(e,i):$[0](e);if(r.prototype){var s=function(){};s.prototype=r.prototype,c.prototype=new s,s.prototype=null}return c},P=function(t,n){var e=t.apply(this,n);return j(e)===e?e:this},F=a?S.bind(v):function(t,n){T(t);var e,r=arguments,o=function(){var o=m(arguments,0,m(r,2));return this instanceof e?P.apply(this,[t,o]):t.apply(n,o)};return e=E([o,t,r])},M=TypeError,N=F.apply,_=F(F.call,N),C=F(N,{}.toString),k=function(t){if("function"!=typeof t&&"[object Function]"!==C(t))throw new M(t+" is not a function");return t},I=function(t,n){return _(k(t),n,m(arguments[2]))},D=function(t){try{return{threw:!1,value:I(t,this,m(arguments,1))}}catch(t){return{threw:!0,value:t}}},A=e(0),X=e.n(A);for(var q=D(function(){return function(t,n){if(t!==n)throw new TypeError("Cannot instantiate an arrow function")}(this,void 0),"function"==typeof Symbol&&X()(Symbol(""))}.bind(void 0)),G=!1===q.threw&&!0===q.value,L=G&&Symbol.prototype.toString,R="function"==typeof L&&X.a,z="".constructor,B=function(t){return R&&R(t)?L.call(t):z(t)},H=e(2),U=e.n(H),V=function(t){return!!t},J={}.toString,K=function(t){return function(t){if("function"!=typeof t&&"[object Function]"!==I(J,t))throw new TypeError("methodize called on incompatible "+t)}(t),function(){return I(t,arguments[0],m(arguments,1))}},Q=K({}.toString),W=function(t){return null===t?"[object Null]":void 0===t?"[object Undefined]":Q(t)},Y=G&&X()(Symbol.toStringTag),Z=function(t){return null==t},tt=function(t){if(Z(t))throw new TypeError("Cannot call method on ".concat(t));return t},nt="Cannot convert a Symbol value to a string".constructor,et=function(t){if(X()(t))throw new TypeError("Cannot convert a Symbol value to a string");return nt(t)},rt=function(t){return et(tt(t))},ot=[{code:9,description:"Tab",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\t"},{code:10,description:"Line Feed",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\n"},{code:11,description:"Vertical Tab",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\v"},{code:12,description:"Form Feed",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\f"},{code:13,description:"Carriage Return",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\r"},{code:32,description:"Space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:160,description:"No-break space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:5760,description:"Ogham space mark",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:6158,description:"Mongolian vowel separator",es5:!0,es2015:!0,es2016:!0,es2017:!1,es2018:!1,string:"᠎"},{code:8192,description:"En quad",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8193,description:"Em quad",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8194,description:"En space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8195,description:"Em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8196,description:"Three-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8197,description:"Four-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8198,description:"Six-per-em space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8199,description:"Figure space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8200,description:"Punctuation space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8201,description:"Thin space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8202,description:"Hair space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8232,description:"Line separator",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\u2028"},{code:8233,description:"Paragraph separator",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\u2029"},{code:8239,description:"Narrow no-break space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:8287,description:"Medium mathematical space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:12288,description:"Ideographic space",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:" "},{code:65279,description:"Byte Order Mark",es5:!0,es2015:!0,es2016:!0,es2017:!0,es2018:!0,string:"\ufeff"}],it="",ut=ot.length,ct=0;ct<ut;ct+=1)ot[ct].es2016&&ot[ct].string,ot[ct].es2018&&(it+=ot[ct].string);var st=it,ft=new(0,/none/.constructor)("^[".concat(st,"]+")),at=K("".replace),lt=function(t){return at(rt(t),ft,"")},pt=new(0,/none/.constructor)("[".concat(st,"]+$")),yt=K("".replace),bt=function(t){return yt(rt(t),pt,"")},dt=function(t){return lt(bt(t))},gt=new(0,/none/.constructor)("[".concat(st,"]+"),"g"),mt=K(" ".replace),ht=function(t){return mt(dt(t),gt," ")},vt=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm,St=K("".replace),wt=function(t,n){return St(rt(t),vt,arguments.length>1?et(n):"")},jt=D.constructor,Ot=K(D.toString),xt=/^class /,Tt=K(xt.test),$t=!1===D(function(){return jt('"use strict"; return class My {};')()}).threw,Et=function(t){return Tt(xt,ht(wt(Ot(t)," ")))},Pt=function(t){var n=D(Et,t);return!1===n.threw&&n.value},Ft=function(t,n){return!o(t)&&(Y?function(t,n){return!($t&&!1===n&&Pt(t)||!1!==D(function(){return Ot(t)}).threw)}(t,V(n)):(!$t||!1!==V(n)||!Pt(t))&&function(t){var n=W(t);return"[object Function]"===n||"[object GeneratorFunction]"===n||"[object AsyncFunction]"===n}(t))},Mt="string".constructor,Nt=(0).constructor,_t=G&&Symbol.toPrimitive,Ct=G&&Symbol.prototype.valueOf,kt=["toString","valueOf"],It=["valueOf","toString"],Dt=function(t,n){tt(t),function(t){if("string"!=typeof t||"number"!==t&&"string"!==t)throw new TypeError('hint must be "string" or "number"')}(n);for(var e="string"===n?kt:It,r=0;r<2;r+=1){var i=t[e[r]];if(Ft(i)){var u=I(i,t);if(o(u))return u}}throw new TypeError("No default value")},At=function(t,n){if(n){if(t===Mt)return"string";if(t===Nt)return"number"}return"default"},Xt=function(t){if(G){if(_t)return function(t,n){var e=t[n];if(!1===Z(e)){if(!1===Ft(e))throw new TypeError("".concat(e," returned for property ").concat(n," of object ").concat(t," is not a function"));return e}}(t,_t);if(X()(t))return Ct}},qt=function(t){var n=t.exoticToPrim,e=t.input,r=t.hint,i=I(n,e,[r]);if(o(i))return i;throw new TypeError("unable to convert exotic object to primitive")},Gt=function(t,n){var e="default"===n&&(U()(t)||X()(t))?"string":n;return Dt(t,"default"===e?"number":e)},Lt=function(t,n){if(o(t))return t;var e=At(n,arguments.length>1),r=Xt(t);return void 0===r?Gt(t,e):qt({exoticToPrim:r,input:t,hint:e})},Rt=parseInt,zt=(0).constructor,Bt=K("᠎".charAt),Ht=/^[-+]?0[xX]/,Ut=K(Ht.test),Vt=function(t,n){var e=lt(et(t));return"᠎"===Bt(e,0)?NaN:Rt(e,zt(n)||(Ut(Ht,e)?16:10))},Jt=2..constructor,Kt=K("Cannot convert a Symbol value to a number".slice),Qt=/^0b[01]+$/i,Wt=Qt.constructor,Yt=K(Qt.test),Zt=/^0o[0-7]+$/i,tn=new Wt("[…᠎​￾]","g"),nn=/^[-+]0x[0-9a-f]+$/i,en=function(t,n){return Vt(Kt(t,2),n)},rn=function(t,n){return function(t){return Yt(Qt,t)}(n)?t(en(n,2)):function(t){return Yt(Zt,t)}(n)?t(en(n,8)):null},on=function(t,n){var e=rn(t,n);if(null!==e)return e;if(function(t){return Yt(tn,t)}(n)||function(t){return Yt(nn,t)}(n))return NaN;var r=dt(n);return r!==n?t(r):null},un=function t(n){var e=function(t){if(X()(t))throw new TypeError("Cannot convert a Symbol value to a number");return t}(Lt(n,Jt));if("string"==typeof e){var r=on(t,e);if(null!==r)return r}return Jt(e)},cn=function(t){return t!=t},sn=function(t){return"number"==typeof t&&!1===cn(t)&&t!==1/0&&t!==-1/0},fn=function(t){var n=un(t);return 0===n||cn(n)?n:n>0?1:-1},an=Math.abs,ln=Math.floor,pn=function(t){var n=un(t);return cn(n)?0:0===n||!1===sn(n)?n:fn(n)*ln(an(n))},yn=function(t){var n=un(t[1]),e=t.length<3?{max:n,min:0}:{max:un(t[2]),min:n};if(e.min>e.max)throw new RangeError('"min" must be less than "max"');return e},bn=function(t){var n=un(t);if(arguments.length<2)return n;var e=yn(arguments),r=e.max,o=e.min;return n<o?o:n>r?r:n},dn=/^(?:0|[1-9]\d*)$/,gn=dn.test;n.default=function(t,n){var e=B(t);if(!1===gn.call(dn,e))return!1;var r=un(e);return arguments.length>1?r<bn(pn(n),9007199254740991):r<9007199254740991}}])});
//# sourceMappingURL=is-index-x.min.js.map
{
"name": "is-index-x",
"version": "2.1.0",
"version": "2.1.1",
"description": "Determine whether the passed value is a zero based index.",

@@ -54,6 +54,6 @@ "homepage": "https://github.com/Xotic750/is-index-x",

"dependencies": {
"math-clamp-x": "^3.2.0",
"to-integer-x": "^4.2.0",
"to-number-x": "^3.2.0",
"to-string-symbols-supported-x": "^2.1.0"
"math-clamp-x": "^3.2.1",
"to-integer-x": "^4.2.1",
"to-number-x": "^3.2.1",
"to-string-symbols-supported-x": "^2.1.1"
},

@@ -68,6 +68,6 @@ "devDependencies": {

"@babel/runtime": "^7.5.5",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@types/webpack": "^4.32.1",
"@xotic750/eslint-config-recommended": "^1.1.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/webpack": "^4.39.0",
"@xotic750/eslint-config-recommended": "^1.1.5",
"babel-core": "^7.0.0-0",

@@ -80,3 +80,3 @@ "babel-eslint": "^10.0.2",

"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint": "^6.2.1",
"eslint-friendly-formatter": "^4.0.1",

@@ -92,3 +92,3 @@ "eslint-import-resolver-webpack": "^0.11.1",

"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-jsdoc": "^15.8.0",
"eslint-plugin-jsdoc": "^15.8.3",
"eslint-plugin-json": "^1.4.0",

@@ -102,4 +102,4 @@ "eslint-plugin-lodash": "^6.0.0",

"eslint-plugin-switch-case": "^1.1.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-file": "^1.0.0",

@@ -111,3 +111,3 @@ "lodash": "^4.17.15",

"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rimraf": "^3.0.0",
"source-map-loader": "^0.2.4",

@@ -117,5 +117,5 @@ "strip-ansi": "^5.2.0",

"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-cli": "^3.3.7",
"webpack-global-object-x": "^1.0.0",

@@ -122,0 +122,0 @@ "webpack-merge": "^4.2.1"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc