{ "version": 3, "sources": ["../../../node_modules/lodash/isArray.js", "../../../node_modules/lodash/_baseUnary.js"], "sourcesContent": ["/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\nmodule.exports = isArray;\n", "/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\nmodule.exports = baseUnary;\n"], "mappings": "yDAAA,IAAAA,EAAAC,EAAA,CAAAC,EAAAC,IAAA,CAuBA,IAAIC,EAAU,MAAM,QAEpBD,EAAO,QAAUC,ICzBjB,IAAAC,EAAAC,EAAA,CAAAC,EAAAC,IAAA,CAOA,SAASC,EAAUC,EAAM,CACvB,OAAO,SAASC,EAAO,CACrB,OAAOD,EAAKC,CAAK,CACnB,CACF,CAEAH,EAAO,QAAUC", "names": ["require_isArray", "__commonJSMin", "exports", "module", "isArray", "require_baseUnary", "__commonJSMin", "exports", "module", "baseUnary", "func", "value"] }