to-property-key-x
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -5,9 +5,9 @@ /*! | ||
"copywrite": "Copyright (c) 2017", | ||
"date": "2019-08-14T15:04:10.215Z", | ||
"date": "2019-08-20T19:33:56.902Z", | ||
"describe": "", | ||
"description": "Converts argument to a value that can be used as a property key.", | ||
"file": "to-property-key-x.js", | ||
"hash": "417d6b7a97067578588a", | ||
"hash": "32d0783adb61a05a0d31", | ||
"license": "MIT", | ||
"version": "3.1.0" | ||
"version": "3.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 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 = 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); | ||
@@ -415,6 +779,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 | ||
@@ -438,4 +798,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); | ||
/** | ||
@@ -449,3 +844,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) { | ||
@@ -459,6 +854,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); | ||
@@ -520,4 +915,4 @@ | ||
var ERROR_MESSAGE = 'Cannot convert a Symbol value to a string'; | ||
var castString = ERROR_MESSAGE.constructor; | ||
var to_string_x_esm_ERROR_MESSAGE = 'Cannot convert a Symbol value to a string'; | ||
var castString = to_string_x_esm_ERROR_MESSAGE.constructor; | ||
/** | ||
@@ -533,3 +928,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); | ||
} | ||
@@ -877,6 +1272,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); | ||
/** | ||
@@ -891,3 +1287,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); | ||
}; | ||
@@ -901,6 +1297,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); | ||
/** | ||
@@ -915,3 +1312,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); | ||
}; | ||
@@ -944,6 +1341,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); | ||
/** | ||
@@ -959,3 +1357,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); | ||
}; | ||
@@ -969,5 +1367,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); | ||
/** | ||
@@ -984,3 +1383,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); | ||
}; | ||
@@ -999,5 +1398,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]'; | ||
@@ -1007,3 +1407,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() { | ||
@@ -1015,3 +1415,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))); | ||
}; | ||
@@ -1039,3 +1439,5 @@ | ||
return attempt_x_esm.call(value, fToString).threw === false; | ||
return attempt_x_esm(function attemptee() { | ||
return methodizedFunctionToString(value); | ||
}).threw === false; | ||
}; | ||
@@ -1058,3 +1460,3 @@ | ||
var is_function_x_esm_isFunction = function isFunction(value, allowClass) { | ||
if (is_primitive_default()(value)) { | ||
if (is_primitive_x_esm(value)) { | ||
return false; | ||
@@ -1085,7 +1487,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'; | ||
@@ -1095,3 +1498,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 */ | ||
@@ -1125,12 +1528,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; | ||
@@ -1211,5 +1612,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; | ||
@@ -1243,3 +1644,3 @@ } | ||
var to_primitive_x_esm_toPrimitive = function toPrimitive(input, preferredType) { | ||
if (is_primitive_default()(input)) { | ||
if (is_primitive_x_esm(input)) { | ||
return input; | ||
@@ -1261,3 +1662,3 @@ } | ||
// CONCATENATED MODULE: ./dist/to-property-key-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); } | ||
function to_property_key_x_esm_typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { to_property_key_x_esm_typeof = function _typeof(obj) { return typeof obj; }; } else { to_property_key_x_esm_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return to_property_key_x_esm_typeof(obj); } | ||
@@ -1277,3 +1678,3 @@ | ||
var key = to_primitive_x_esm(argument, String); | ||
return has_symbol_support_x_esm && _typeof(key) === 'symbol' ? key : to_string_x_esm(key); | ||
return has_symbol_support_x_esm && to_property_key_x_esm_typeof(key) === 'symbol' ? key : to_string_x_esm(key); | ||
}; | ||
@@ -1280,0 +1681,0 @@ |
@@ -5,18 +5,12 @@ /*! | ||
"copywrite": "Copyright (c) 2017", | ||
"date": "2019-08-14T15:04:10.215Z", | ||
"date": "2019-08-20T19:33:56.902Z", | ||
"describe": "", | ||
"description": "Converts argument to a value that can be used as a property key.", | ||
"file": "to-property-key-x.min.js", | ||
"hash": "8f73d87899853219dada", | ||
"hash": "e215d896b701ea3c3bf0", | ||
"license": "MIT", | ||
"version": "3.1.0" | ||
"version": "3.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.toPropertyKeyX=t():e.toPropertyKeyX=t()}(function(){"use strict";var e,t={}.constructor,r=t.prototype,n=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 n?n(r,"$$globalThis$$",{get:i,configurable:!0}):r.__defineGetter__("$$globalThis$$",i),e="undefined"==typeof $$globalThis$$?o():$$globalThis$$,delete r.$$globalThis$$,e}catch(e){return o()}}(),function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=6)}([function(e,t,r){"use strict";var n=Object.prototype.toString;if(r(3)()){var o=Symbol.prototype.toString,i=/^Symbol\(.*\)$/;e.exports=function(e){if("symbol"==typeof e)return!0;if("[object Symbol]"!==n.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,r){"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,r){"use strict";var n=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 n.call(e),!0}catch(e){return!1}}(e):"[object Date]"===o.call(e))}},function(e,t,r){"use strict";(function(t){var n=t.Symbol,o=r(5);e.exports=function(){return"function"==typeof n&&("function"==typeof Symbol&&("symbol"==typeof n("foo")&&("symbol"==typeof Symbol("bar")&&o())))}}).call(this,r(4))},function(e,t){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(e){"object"==typeof window&&(r=window)}e.exports=r},function(e,t,r){"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"),r=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(r))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 n=Object.getOwnPropertySymbols(e);if(1!==n.length||n[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,r){"use strict";r.r(t);var n=function(e){try{for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return{threw:!1,value:e.apply(this,r)}}catch(e){return{threw:!0,value:e}}},o=r(0),i=r.n(o);for(var s=n(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=r(1),f=r.n(u),a=r(2),l=r.n(a),p=function(e){return!!e},y={}.toString,d=function(e){return null===e?"[object Null]":void 0===e?"[object Undefined]":y.call(e)},b=c&&i()(Symbol.toStringTag),g=function(e){return null==e},m=function(e){if(g(e))throw new TypeError("Cannot call method on ".concat(e));return e},v="Cannot convert a Symbol value to a string",h=v.constructor,S=function(e){if(i()(e))throw new TypeError(v);return h(e)},w=function(e){return S(m(e))},j=[{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"}],O="",$=j.length,T=0;T<$;T+=1)j[T].es2016&&j[T].string,j[T].es2018&&(O+=j[T].string);var x=O,P=new(0,/none/.constructor)("^[".concat(x,"]+")),E="".replace,_=function(e){return E.call(w(e),P,"")},F=new(0,/none/.constructor)("[".concat(x,"]+$")),M="".replace,k=function(e){return M.call(w(e),F,"")},N=function(e){return _(k(e))},D=new(0,/none/.constructor)("[".concat(x,"]+"),"g"),C=" ".replace,q=function(e){return C.call(N(e),D," ")},A=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm,G="".replace,I=function(e,t){return G.call(w(e),A,arguments.length>1?S(t):"")},K=n.constructor,L=n.toString,X=/^class /,B=X.test,H=!1===n(function(){return K('"use strict"; return class My {};')()}).threw,R=function(e){return B.call(X,q(I(L.call(e)," ")))},U=function(e){var t=n(R,e);return!1===t.threw&&t.value},V=function(e,t){return!f()(e)&&(b?function(e,t){return!(H&&!1===t&&U(e)||!1!==n.call(e,L).threw)}(e,p(t)):(!H||!1!==p(t)||!U(e))&&function(e){var t=d(e);return"[object Function]"===t||"[object GeneratorFunction]"===t||"[object AsyncFunction]"===t}(e))},z="string".constructor,J=(0).constructor,Q=c&&Symbol.toPrimitive,W=c&&Symbol.prototype.valueOf,Y=["toString","valueOf"],Z=["valueOf","toString"],ee=function(e,t){m(e),function(e){if("string"!=typeof e||"number"!==e&&"string"!==e)throw new TypeError('hint must be "string" or "number"')}(t);for(var r,n,o="string"===t?Y:Z,i=0;i<2;i+=1)if(r=e[o[i]],V(r)&&(n=r.call(e),f()(n)))return n;throw new TypeError("No default value")},te=function(e,t){if(t){if(e===z)return"string";if(e===J)return"number"}return"default"},re=function(e){if(c){if(Q)return function(e,t){var r=e[t];if(!1===g(r)){if(!1===V(r))throw new TypeError("".concat(r," returned for property ").concat(t," of object ").concat(e," is not a function"));return r}}(e,Q);if(i()(e))return W}},ne=function(e){var t=e.exoticToPrim,r=e.input,n=e.hint,o=t.call(r,n);if(f()(o))return o;throw new TypeError("unable to convert exotic object to primitive")},oe=function(e,t){var r="default"===t&&(l()(e)||i()(e))?"string":t;return ee(e,"default"===r?"number":r)},ie=function(e,t){if(f()(e))return e;var r=te(t,arguments.length>1),n=re(e);return void 0===n?oe(e,r):ne({exoticToPrim:n,input:e,hint:r})};function se(e){return(se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}t.default=function(e){var t=ie(e,String);return c&&"symbol"===se(t)?t:S(t)}}])}); | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.toPropertyKeyX=e():t.toPropertyKeyX=e()}(function(){"use strict";var t,e={}.constructor,n=e.prototype,r=e.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),t="undefined"==typeof $$globalThis$$?o():$$globalThis$$,delete n.$$globalThis$$,t}catch(t){return o()}}(),function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=6)}([function(t,e,n){"use strict";var r=Object.prototype.toString;if(n(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,e,n){"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,e,n){"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,e,n){"use strict";(function(e){var r=e.Symbol,o=n(5);t.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&o())))}}).call(this,n(4))},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),n=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(e in t[e]=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]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(t,e);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},function(t,e,n){"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)}n.r(e);var o=function(t){return"object"===r(t)?null===t:"function"!=typeof t},i=n(1),u=n.n(i),c={}.constructor("a"),s="a"===c[0]&&0 in c,f=function(){}.bind,a="function"==typeof f&&function(){var t=null,e=null,n=null,r=[];try{var o=f.apply(function(r,o){return n=this,t=r,e=o,arguments},[r,1]),i=o(2);return 1===o.length&&2===i.length&&1===t&&2===e&&n===r}catch(t){return!1}}()&&function(){var t=null,e=null,n=null,r=[1,2,3],o=function(o,i){return t=o,e=i,n=this,r};try{var i=f.apply(o,[null]),u=new i(1,2);return i.length===o.length&&u===r&&1===t&&2===e&&n!==r}catch(t){return!1}}(),l="".split,p=Math.max,y=o.bind,b=o.call,d=a?y.call(b,l):function(t,e){return l.call(t,e)},g=function(t){return u()(t)?d(t,""):t},m=function(t,e){var n=arguments.length>2?arguments[2]:[];if("string"!=typeof t&&o(t))return n;for(var r=s?t:g(t),i=r.length,u=p(0,e)||0;u<i;u+=1)n[n.length]=t[u];return n};function h(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var u,c=t[Symbol.iterator]();!(r=(u=c.next()).done)&&(n.push(u.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==c.return||c.return()}finally{if(o)throw i}}return n}(t,e)||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,T=function(t,e){return t>=e?t:e},$=function(t){if("function"!=typeof t&&"[object Function]"!==O.apply(t))throw new TypeError("bind called on incompatible "+t)},x=[function(t){return function(){return t.apply(this,m(arguments))}},function(t,e){return function(n){return t.apply(this,m(arguments,e,[n]))}},function(t,e){return function(n,r){return t.apply(this,m(arguments,e,[n,r]))}},function(t,e){return function(n,r,o){return t.apply(this,m(arguments,e,[n,r,o]))}},function(t,e){return function(n,r,o,i){return t.apply(this,m(arguments,e,[n,r,o,i]))}},function(t,e){return function(n,r,o,i,u){return t.apply(this,m(arguments,e,[n,r,o,i,u]))}},function(t,e){return function(n,r,o,i,u,c){return t.apply(this,m(arguments,e,[n,r,o,i,u,c]))}},function(t,e){return function(n,r,o,i,u,c,s){return t.apply(this,m(arguments,e,[n,r,o,i,u,c,s]))}},function(t,e){return function(n,r,o,i,u,c,s,f){return t.apply(this,m(arguments,e,[n,r,o,i,u,c,s,f]))}}],P=function(t){var e=h(t,3),n=e[0],r=e[1],o=e[2],i=T(0,r.length-T(0,o.length-2)),u=x[i],c=u?u(n,i):x[0](n);if(r.prototype){var s=function(){};s.prototype=r.prototype,c.prototype=new s,s.prototype=null}return c},E=function(t,e){var n=t.apply(this,e);return j(n)===n?n:this},F=a?S.bind(v):function(t,e){$(t);var n,r=arguments,o=function(){var o=m(arguments,0,m(r,2));return this instanceof n?E.apply(this,[t,o]):t.apply(e,o)};return n=P([o,t,r])},_=TypeError,M=F.apply,k=F(F.call,M),N=F(M,{}.toString),C=function(t){if("function"!=typeof t&&"[object Function]"!==N(t))throw new _(t+" is not a function");return t},D=function(t,e){return k(C(t),e,m(arguments[2]))},A=function(t){try{return{threw:!1,value:D(t,this,m(arguments,1))}}catch(t){return{threw:!0,value:t}}},I=n(0),q=n.n(I);for(var G=A(function(){return function(t,e){if(t!==e)throw new TypeError("Cannot instantiate an arrow function")}(this,void 0),"function"==typeof Symbol&&q()(Symbol(""))}.bind(void 0)),K=!1===G.threw&&!0===G.value,L=n(2),X=n.n(L),z=function(t){return!!t},B={}.toString,H=function(t){return function(t){if("function"!=typeof t&&"[object Function]"!==D(B,t))throw new TypeError("methodize called on incompatible "+t)}(t),function(){return D(t,arguments[0],m(arguments,1))}},R=H({}.toString),U=function(t){return null===t?"[object Null]":void 0===t?"[object Undefined]":R(t)},V=K&&q()(Symbol.toStringTag),J=function(t){return null==t},Q=function(t){if(J(t))throw new TypeError("Cannot call method on ".concat(t));return t},W="Cannot convert a Symbol value to a string".constructor,Y=function(t){if(q()(t))throw new TypeError("Cannot convert a Symbol value to a string");return W(t)},Z=function(t){return Y(Q(t))},tt=[{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"}],et="",nt=tt.length,rt=0;rt<nt;rt+=1)tt[rt].es2016&&tt[rt].string,tt[rt].es2018&&(et+=tt[rt].string);var ot=et,it=new(0,/none/.constructor)("^[".concat(ot,"]+")),ut=H("".replace),ct=function(t){return ut(Z(t),it,"")},st=new(0,/none/.constructor)("[".concat(ot,"]+$")),ft=H("".replace),at=function(t){return ft(Z(t),st,"")},lt=function(t){return ct(at(t))},pt=new(0,/none/.constructor)("[".concat(ot,"]+"),"g"),yt=H(" ".replace),bt=function(t){return yt(lt(t),pt," ")},dt=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm,gt=H("".replace),mt=function(t,e){return gt(Z(t),dt,arguments.length>1?Y(e):"")},ht=A.constructor,vt=H(A.toString),St=/^class /,wt=H(St.test),jt=!1===A(function(){return ht('"use strict"; return class My {};')()}).threw,Ot=function(t){return wt(St,bt(mt(vt(t)," ")))},Tt=function(t){var e=A(Ot,t);return!1===e.threw&&e.value},$t=function(t,e){return!o(t)&&(V?function(t,e){return!(jt&&!1===e&&Tt(t)||!1!==A(function(){return vt(t)}).threw)}(t,z(e)):(!jt||!1!==z(e)||!Tt(t))&&function(t){var e=U(t);return"[object Function]"===e||"[object GeneratorFunction]"===e||"[object AsyncFunction]"===e}(t))},xt="string".constructor,Pt=(0).constructor,Et=K&&Symbol.toPrimitive,Ft=K&&Symbol.prototype.valueOf,_t=["toString","valueOf"],Mt=["valueOf","toString"],kt=function(t,e){Q(t),function(t){if("string"!=typeof t||"number"!==t&&"string"!==t)throw new TypeError('hint must be "string" or "number"')}(e);for(var n="string"===e?_t:Mt,r=0;r<2;r+=1){var i=t[n[r]];if($t(i)){var u=D(i,t);if(o(u))return u}}throw new TypeError("No default value")},Nt=function(t,e){if(e){if(t===xt)return"string";if(t===Pt)return"number"}return"default"},Ct=function(t){if(K){if(Et)return function(t,e){var n=t[e];if(!1===J(n)){if(!1===$t(n))throw new TypeError("".concat(n," returned for property ").concat(e," of object ").concat(t," is not a function"));return n}}(t,Et);if(q()(t))return Ft}},Dt=function(t){var e=t.exoticToPrim,n=t.input,r=t.hint,i=D(e,n,[r]);if(o(i))return i;throw new TypeError("unable to convert exotic object to primitive")},At=function(t,e){var n="default"===e&&(X()(t)||q()(t))?"string":e;return kt(t,"default"===n?"number":n)},It=function(t,e){if(o(t))return t;var n=Nt(e,arguments.length>1),r=Ct(t);return void 0===r?At(t,n):Dt({exoticToPrim:r,input:t,hint:n})};function qt(t){return(qt="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.default=function(t){var e=It(t,String);return K&&"symbol"===qt(e)?e:Y(e)}}])}); | ||
//# sourceMappingURL=to-property-key-x.min.js.map |
{ | ||
"name": "to-property-key-x", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "Converts argument to a value that can be used as a property key.", | ||
@@ -53,4 +53,4 @@ "homepage": "https://github.com/Xotic750/to-property-key-x", | ||
"dependencies": { | ||
"has-symbol-support-x": "^2.1.0", | ||
"to-primitive-x": "^2.1.0", | ||
"has-symbol-support-x": "^2.1.1", | ||
"to-primitive-x": "^2.1.1", | ||
"to-string-x": "^2.1.0" | ||
@@ -66,6 +66,6 @@ }, | ||
"@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", | ||
@@ -78,3 +78,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", | ||
@@ -90,3 +90,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", | ||
@@ -100,4 +100,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", | ||
@@ -109,3 +109,3 @@ "lodash": "^4.17.15", | ||
"prettier": "^1.18.2", | ||
"rimraf": "^2.6.3", | ||
"rimraf": "^3.0.0", | ||
"source-map-loader": "^0.2.4", | ||
@@ -115,5 +115,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", | ||
@@ -120,0 +120,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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
207816
1452
Updatedhas-symbol-support-x@^2.1.1
Updatedto-primitive-x@^2.1.1