{"version":3,"file":"vendors-lodash~PosterListBlock~ResearchArticleListContent~286350ca6fd6e8e35c019844e117c8e3.chunk.197c77bb047c8ef170de.js","mappings":"sFAAA,IAAIA,EAAW,EAAQ,OAmCvBC,EAAOC,QAPP,SAAmBC,GACjB,IAAIC,EAASJ,EAASG,GAClBE,EAAYD,EAAS,EAEzB,OAAOA,GAAWA,EAAUC,EAAYD,EAASC,EAAYD,EAAU,CACzE,C","sources":["webpack://Kristiania.Web/./node_modules/lodash/toInteger.js"],"sourcesContent":["var toFinite = require('./toFinite');\n\n/**\n * Converts `value` to an integer.\n *\n * **Note:** This method is loosely based on\n * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted integer.\n * @example\n *\n * _.toInteger(3.2);\n * // => 3\n *\n * _.toInteger(Number.MIN_VALUE);\n * // => 0\n *\n * _.toInteger(Infinity);\n * // => 1.7976931348623157e+308\n *\n * _.toInteger('3.2');\n * // => 3\n */\nfunction toInteger(value) {\n var result = toFinite(value),\n remainder = result % 1;\n\n return result === result ? (remainder ? result - remainder : result) : 0;\n}\n\nmodule.exports = toInteger;\n"],"names":["toFinite","module","exports","value","result","remainder"],"sourceRoot":""}