{"version":3,"file":"identity-GO_1XRQH.js","sources":["../../../node_modules/lodash/_isIndex.js","../../../node_modules/lodash/isLength.js","../../../node_modules/lodash/_isKey.js","../../../node_modules/lodash/memoize.js","../../../node_modules/lodash/_memoizeCapped.js","../../../node_modules/lodash/_stringToPath.js","../../../node_modules/lodash/_castPath.js","../../../node_modules/lodash/_toKey.js","../../../node_modules/lodash/_baseGet.js","../../../node_modules/lodash/_baseHasIn.js","../../../node_modules/lodash/_hasPath.js","../../../node_modules/lodash/hasIn.js","../../../node_modules/lodash/identity.js"],"sourcesContent":["/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\nmodule.exports = isIndex;\n","/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\nmodule.exports = isLength;\n","var isArray = require('./isArray'),\n isSymbol = require('./isSymbol');\n\n/** Used to match property names within property paths. */\nvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/;\n\n/**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\nfunction isKey(value, object) {\n if (isArray(value)) {\n return false;\n }\n var type = typeof value;\n if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n value == null || isSymbol(value)) {\n return true;\n }\n return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n (object != null && value in Object(object));\n}\n\nmodule.exports = isKey;\n","var MapCache = require('./_MapCache');\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided, it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is used as the map cache key. The `func`\n * is invoked with the `this` binding of the memoized function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the\n * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoized function.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n * var other = { 'c': 3, 'd': 4 };\n *\n * var values = _.memoize(_.values);\n * values(object);\n * // => [1, 2]\n *\n * values(other);\n * // => [3, 4]\n *\n * object.a = 2;\n * values(object);\n * // => [1, 2]\n *\n * // Modify the result cache.\n * values.cache.set(object, ['a', 'b']);\n * values(object);\n * // => ['a', 'b']\n *\n * // Replace `_.memoize.Cache`.\n * _.memoize.Cache = WeakMap;\n */\nfunction memoize(func, resolver) {\n if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result) || cache;\n return result;\n };\n memoized.cache = new (memoize.Cache || MapCache);\n return memoized;\n}\n\n// Expose `MapCache`.\nmemoize.Cache = MapCache;\n\nmodule.exports = memoize;\n","var memoize = require('./memoize');\n\n/** Used as the maximum memoize cache size. */\nvar MAX_MEMOIZE_SIZE = 500;\n\n/**\n * A specialized version of `_.memoize` which clears the memoized function's\n * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n *\n * @private\n * @param {Function} func The function to have its output memoized.\n * @returns {Function} Returns the new memoized function.\n */\nfunction memoizeCapped(func) {\n var result = memoize(func, function(key) {\n if (cache.size === MAX_MEMOIZE_SIZE) {\n cache.clear();\n }\n return key;\n });\n\n var cache = result.cache;\n return result;\n}\n\nmodule.exports = memoizeCapped;\n","var memoizeCapped = require('./_memoizeCapped');\n\n/** Used to match property names within property paths. */\nvar rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n/** Used to match backslashes in property paths. */\nvar reEscapeChar = /\\\\(\\\\)?/g;\n\n/**\n * Converts `string` to a property path array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the property path array.\n */\nvar stringToPath = memoizeCapped(function(string) {\n var result = [];\n if (string.charCodeAt(0) === 46 /* . */) {\n result.push('');\n }\n string.replace(rePropName, function(match, number, quote, subString) {\n result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n});\n\nmodule.exports = stringToPath;\n","var isArray = require('./isArray'),\n isKey = require('./_isKey'),\n stringToPath = require('./_stringToPath'),\n toString = require('./toString');\n\n/**\n * Casts `value` to a path array if it's not one.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {Object} [object] The object to query keys on.\n * @returns {Array} Returns the cast property path array.\n */\nfunction castPath(value, object) {\n if (isArray(value)) {\n return value;\n }\n return isKey(value, object) ? [value] : stringToPath(toString(value));\n}\n\nmodule.exports = castPath;\n","var isSymbol = require('./isSymbol');\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\nfunction toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = toKey;\n","var castPath = require('./_castPath'),\n toKey = require('./_toKey');\n\n/**\n * The base implementation of `_.get` without support for default values.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @returns {*} Returns the resolved value.\n */\nfunction baseGet(object, path) {\n path = castPath(path, object);\n\n var index = 0,\n length = path.length;\n\n while (object != null && index < length) {\n object = object[toKey(path[index++])];\n }\n return (index && index == length) ? object : undefined;\n}\n\nmodule.exports = baseGet;\n","/**\n * The base implementation of `_.hasIn` without support for deep paths.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {Array|string} key The key to check.\n * @returns {boolean} Returns `true` if `key` exists, else `false`.\n */\nfunction baseHasIn(object, key) {\n return object != null && key in Object(object);\n}\n\nmodule.exports = baseHasIn;\n","var castPath = require('./_castPath'),\n isArguments = require('./isArguments'),\n isArray = require('./isArray'),\n isIndex = require('./_isIndex'),\n isLength = require('./isLength'),\n toKey = require('./_toKey');\n\n/**\n * Checks if `path` exists on `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @param {Function} hasFunc The function to check properties.\n * @returns {boolean} Returns `true` if `path` exists, else `false`.\n */\nfunction hasPath(object, path, hasFunc) {\n path = castPath(path, object);\n\n var index = -1,\n length = path.length,\n result = false;\n\n while (++index < length) {\n var key = toKey(path[index]);\n if (!(result = object != null && hasFunc(object, key))) {\n break;\n }\n object = object[key];\n }\n if (result || ++index != length) {\n return result;\n }\n length = object == null ? 0 : object.length;\n return !!length && isLength(length) && isIndex(key, length) &&\n (isArray(object) || isArguments(object));\n}\n\nmodule.exports = hasPath;\n","var baseHasIn = require('./_baseHasIn'),\n hasPath = require('./_hasPath');\n\n/**\n * Checks if `path` is a direct or inherited property of `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @param {Array|string} path The path to check.\n * @returns {boolean} Returns `true` if `path` exists, else `false`.\n * @example\n *\n * var object = _.create({ 'a': _.create({ 'b': 2 }) });\n *\n * _.hasIn(object, 'a');\n * // => true\n *\n * _.hasIn(object, 'a.b');\n * // => true\n *\n * _.hasIn(object, ['a', 'b']);\n * // => true\n *\n * _.hasIn(object, 'b');\n * // => false\n */\nfunction hasIn(object, path) {\n return object != null && hasPath(object, path, baseHasIn);\n}\n\nmodule.exports = hasIn;\n","/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\nmodule.exports = identity;\n"],"names":["MAX_SAFE_INTEGER","reIsUint","isIndex","value","length","type","_isIndex","isLength","isLength_1","isArray","require$$0","isSymbol","require$$1","reIsDeepProp","reIsPlainProp","isKey","object","_isKey","MapCache","FUNC_ERROR_TEXT","memoize","func","resolver","memoized","args","key","cache","result","memoize_1","MAX_MEMOIZE_SIZE","memoizeCapped","_memoizeCapped","rePropName","reEscapeChar","stringToPath","string","match","number","quote","subString","_stringToPath","require$$2","toString","require$$3","castPath","_castPath","INFINITY","toKey","_toKey","baseGet","path","index","_baseGet","baseHasIn","_baseHasIn","isArguments","require$$4","require$$5","hasPath","hasFunc","_hasPath","hasIn","hasIn_1","identity","identity_1"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12]}