{"version":3,"sources":["webpack:///./node_modules/lodash/constant.js"],"names":["constant","value","module","exports"],"mappings":"mGAmBA,SAASA,EAASC,GAChB,OAAO,WACL,OAAOA,GAIXC,EAAOC,QAAUH","file":"js/chunk-2d0d699b.0468f443.js","sourcesContent":["/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\nfunction constant(value) {\n return function() {\n return value;\n };\n}\n\nmodule.exports = constant;\n"],"sourceRoot":""}