{"version":3,"file":"_baseEach-BSmFaJxv.js","sources":["../../../node_modules/lodash/_createBaseEach.js","../../../node_modules/lodash/_baseEach.js"],"sourcesContent":["var isArrayLike = require('./isArrayLike');\n\n/**\n * Creates a `baseEach` or `baseEachRight` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseEach(eachFunc, fromRight) {\n return function(collection, iteratee) {\n if (collection == null) {\n return collection;\n }\n if (!isArrayLike(collection)) {\n return eachFunc(collection, iteratee);\n }\n var length = collection.length,\n index = fromRight ? length : -1,\n iterable = Object(collection);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (iteratee(iterable[index], index, iterable) === false) {\n break;\n }\n }\n return collection;\n };\n}\n\nmodule.exports = createBaseEach;\n","var baseForOwn = require('./_baseForOwn'),\n createBaseEach = require('./_createBaseEach');\n\n/**\n * The base implementation of `_.forEach` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array|Object} Returns `collection`.\n */\nvar baseEach = createBaseEach(baseForOwn);\n\nmodule.exports = baseEach;\n"],"names":["isArrayLike","require$$0","_baseEach","eachFunc","fromRight","collection","iteratee","length","index","iterable","Object","createBaseEach"],"mappings":"sFAAA,IAAIA,EAAcC,EA+BlB,IClBAC,EDHA,SAAwBC,EAAUC,GACzB,OAAA,SAASC,EAAYC,GAC1B,GAAkB,MAAdD,EACK,OAAAA,EAEL,IAACL,EAAYK,GACR,OAAAF,EAASE,EAAYC,GAM9B,IAJI,IAAAC,EAASF,EAAWE,OACpBC,EAAQJ,EAAYG,GAAS,EAC7BE,EAAWC,OAAOL,IAEdD,EAAYI,MAAYA,EAAQD,KACa,IAA/CD,EAASG,EAASD,GAAQA,EAAOC,KAIhC,OAAAJ,CACX,CACA,CClBeM,CAXEV","x_google_ignoreList":[0,1]}