{"version":3,"file":"vendors-lodash~PosterListBlock~ResearchArticleListContent~aa9a71702983c31bb24f82da5b9166c5.chunk.9b99617d823abb69807d.js","mappings":"sFAAA,IAAIA,EAAY,EAAQ,OACpBC,EAAiB,EAAQ,OACzBC,EAAY,EAAQ,OAGpBC,EAAaC,KAAKC,KAClBC,EAAYF,KAAKG,IA2CrBC,EAAOC,QApBP,SAAeC,EAAOC,EAAMC,GAExBD,GADGC,EAAQX,EAAeS,EAAOC,EAAMC,QAAkBC,IAATF,GACzC,EAEAL,EAAUJ,EAAUS,GAAO,GAEpC,IAAIG,EAAkB,MAATJ,EAAgB,EAAIA,EAAMI,OACvC,IAAKA,GAAUH,EAAO,EACpB,MAAO,GAMT,IAJA,IAAII,EAAQ,EACRC,EAAW,EACXC,EAASC,MAAMf,EAAWW,EAASH,IAEhCI,EAAQD,GACbG,EAAOD,KAAchB,EAAUU,EAAOK,EAAQA,GAASJ,GAEzD,OAAOM,CACT,C","sources":["webpack://Kristiania.Web/./node_modules/lodash/chunk.js"],"sourcesContent":["var baseSlice = require('./_baseSlice'),\n isIterateeCall = require('./_isIterateeCall'),\n toInteger = require('./toInteger');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeCeil = Math.ceil,\n nativeMax = Math.max;\n\n/**\n * Creates an array of elements split into groups the length of `size`.\n * If `array` can't be split evenly, the final chunk will be the remaining\n * elements.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Array\n * @param {Array} array The array to process.\n * @param {number} [size=1] The length of each chunk\n * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n * @returns {Array} Returns the new array of chunks.\n * @example\n *\n * _.chunk(['a', 'b', 'c', 'd'], 2);\n * // => [['a', 'b'], ['c', 'd']]\n *\n * _.chunk(['a', 'b', 'c', 'd'], 3);\n * // => [['a', 'b', 'c'], ['d']]\n */\nfunction chunk(array, size, guard) {\n if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) {\n size = 1;\n } else {\n size = nativeMax(toInteger(size), 0);\n }\n var length = array == null ? 0 : array.length;\n if (!length || size < 1) {\n return [];\n }\n var index = 0,\n resIndex = 0,\n result = Array(nativeCeil(length / size));\n\n while (index < length) {\n result[resIndex++] = baseSlice(array, index, (index += size));\n }\n return result;\n}\n\nmodule.exports = chunk;\n"],"names":["baseSlice","isIterateeCall","toInteger","nativeCeil","Math","ceil","nativeMax","max","module","exports","array","size","guard","undefined","length","index","resIndex","result","Array"],"sourceRoot":""}