{"version":3,"file":"_baseSlice-z0Zd1-Ev.js","sources":["../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSlice.js"],"sourcesContent":["/**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\nfunction baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n}\n\nmodule.exports = baseSlice;\n"],"names":["baseSlice","array","start","end","index","length","result","_baseSlice"],"mappings":"AASA,SAASA,EAAUC,EAAOC,EAAOC,EAAK,CACpC,IAAIC,EAAQ,GACVC,EAASJ,EAAM,OACbC,EAAQ,IACVA,EAAQ,CAACA,EAAQG,EAAS,EAAIA,EAASH,GAEzCC,EAAMA,EAAME,EAASA,EAASF,EAC1BA,EAAM,IACRA,GAAOE,GAETA,EAASH,EAAQC,EAAM,EAAIA,EAAMD,IAAU,EAC3CA,KAAW,EAEX,QADII,EAAS,MAAMD,CAAM,EAClB,EAAED,EAAQC,GACfC,EAAOF,CAAK,EAAIH,EAAMG,EAAQF,CAAK,EAErC,OAAOI,CACT,CACA,IAAAC,EAAiBP","x_google_ignoreList":[0]}