{"version":3,"file":"_getTag.Rxb1cLhN.js","sources":["../../../../../../../node_modules/@babylon/ui-kit-searchers/components/searchers/searcher-cir/components/skeleton/index.js","../../../../../../../node_modules/lodash/_nativeKeys.js","../../../../../../../node_modules/lodash/_baseKeys.js","../../../../../../../node_modules/lodash/keys.js","../../../../../../../node_modules/lodash/_arrayFilter.js","../../../../../../../node_modules/lodash/stubArray.js","../../../../../../../node_modules/lodash/_getSymbols.js","../../../../../../../node_modules/lodash/_arrayPush.js","../../../../../../../node_modules/lodash/_baseGetAllKeys.js","../../../../../../../node_modules/lodash/_getAllKeys.js","../../../../../../../node_modules/lodash/_DataView.js","../../../../../../../node_modules/lodash/_Promise.js","../../../../../../../node_modules/lodash/_Set.js","../../../../../../../node_modules/lodash/_WeakMap.js","../../../../../../../node_modules/lodash/_getTag.js"],"sourcesContent":["import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\nimport SearcherCirSkeletonDesktop from './views/desktop/index.js';\nimport SearcherCirSkeletonMobile from './views/mobile/index.js';\n\nconst SearcherCirSkeleton = generateViewsComponent(SearcherCirSkeletonDesktop, SearcherCirSkeletonMobile);\n\nexport { SearcherCirSkeleton as default };\n//# sourceMappingURL=index.js.map\n","var overArg = require('./_overArg');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeKeys = overArg(Object.keys, Object);\n\nmodule.exports = nativeKeys;\n","var isPrototype = require('./_isPrototype'),\n nativeKeys = require('./_nativeKeys');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeys;\n","var arrayLikeKeys = require('./_arrayLikeKeys'),\n baseKeys = require('./_baseKeys'),\n isArrayLike = require('./isArrayLike');\n\n/**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\nfunction keys(object) {\n return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n}\n\nmodule.exports = keys;\n","/**\n * A specialized version of `_.filter` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\nfunction arrayFilter(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[resIndex++] = value;\n }\n }\n return result;\n}\n\nmodule.exports = arrayFilter;\n","/**\n * This method returns a new empty array.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {Array} Returns the new empty array.\n * @example\n *\n * var arrays = _.times(2, _.stubArray);\n *\n * console.log(arrays);\n * // => [[], []]\n *\n * console.log(arrays[0] === arrays[1]);\n * // => false\n */\nfunction stubArray() {\n return [];\n}\n\nmodule.exports = stubArray;\n","var arrayFilter = require('./_arrayFilter'),\n stubArray = require('./stubArray');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n if (object == null) {\n return [];\n }\n object = Object(object);\n return arrayFilter(nativeGetSymbols(object), function(symbol) {\n return propertyIsEnumerable.call(object, symbol);\n });\n};\n\nmodule.exports = getSymbols;\n","/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\nfunction arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n}\n\nmodule.exports = arrayPush;\n","var arrayPush = require('./_arrayPush'),\n isArray = require('./isArray');\n\n/**\n * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @param {Function} symbolsFunc The function to get the symbols of `object`.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n var result = keysFunc(object);\n return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n}\n\nmodule.exports = baseGetAllKeys;\n","var baseGetAllKeys = require('./_baseGetAllKeys'),\n getSymbols = require('./_getSymbols'),\n keys = require('./keys');\n\n/**\n * Creates an array of own enumerable property names and symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction getAllKeys(object) {\n return baseGetAllKeys(object, keys, getSymbols);\n}\n\nmodule.exports = getAllKeys;\n","var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar DataView = getNative(root, 'DataView');\n\nmodule.exports = DataView;\n","var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Promise = getNative(root, 'Promise');\n\nmodule.exports = Promise;\n","var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Set = getNative(root, 'Set');\n\nmodule.exports = Set;\n","var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar WeakMap = getNative(root, 'WeakMap');\n\nmodule.exports = WeakMap;\n","var DataView = require('./_DataView'),\n Map = require('./_Map'),\n Promise = require('./_Promise'),\n Set = require('./_Set'),\n WeakMap = require('./_WeakMap'),\n baseGetTag = require('./_baseGetTag'),\n toSource = require('./_toSource');\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]',\n objectTag = '[object Object]',\n promiseTag = '[object Promise]',\n setTag = '[object Set]',\n weakMapTag = '[object WeakMap]';\n\nvar dataViewTag = '[object DataView]';\n\n/** Used to detect maps, sets, and weakmaps. */\nvar dataViewCtorString = toSource(DataView),\n mapCtorString = toSource(Map),\n promiseCtorString = toSource(Promise),\n setCtorString = toSource(Set),\n weakMapCtorString = toSource(WeakMap);\n\n/**\n * Gets the `toStringTag` of `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nvar getTag = baseGetTag;\n\n// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\nif ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n (Map && getTag(new Map) != mapTag) ||\n (Promise && getTag(Promise.resolve()) != promiseTag) ||\n (Set && getTag(new Set) != setTag) ||\n (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n getTag = function(value) {\n var result = baseGetTag(value),\n Ctor = result == objectTag ? value.constructor : undefined,\n ctorString = Ctor ? toSource(Ctor) : '';\n\n if (ctorString) {\n switch (ctorString) {\n case dataViewCtorString: return dataViewTag;\n case mapCtorString: return mapTag;\n case promiseCtorString: return promiseTag;\n case setCtorString: return setTag;\n case weakMapCtorString: return weakMapTag;\n }\n }\n return result;\n };\n}\n\nmodule.exports = getTag;\n"],"names":["SearcherCirSkeleton","generateViewsComponent","SearcherCirSkeletonDesktop","SearcherCirSkeletonMobile","overArg","require$$0","nativeKeys","_nativeKeys","isPrototype","require$$1","objectProto","hasOwnProperty","baseKeys","object","result","key","_baseKeys","arrayLikeKeys","isArrayLike","require$$2","keys","keys_1","arrayFilter","array","predicate","index","length","resIndex","value","_arrayFilter","stubArray","stubArray_1","propertyIsEnumerable","nativeGetSymbols","getSymbols","symbol","_getSymbols","arrayPush","values","offset","_arrayPush","isArray","baseGetAllKeys","keysFunc","symbolsFunc","_baseGetAllKeys","getAllKeys","_getAllKeys","getNative","root","DataView","_DataView","Promise","_Promise","Set","_Set","WeakMap","_WeakMap","Map","require$$3","require$$4","baseGetTag","require$$5","toSource","require$$6","mapTag","objectTag","promiseTag","setTag","weakMapTag","dataViewTag","dataViewCtorString","mapCtorString","promiseCtorString","setCtorString","weakMapCtorString","getTag","Ctor","ctorString","_getTag"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14]}