You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
2.2 KiB
1 lines
2.2 KiB
{"ast":null,"code":"/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function (object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\nexport default createBaseFor;","map":{"version":3,"names":["createBaseFor","fromRight","object","iteratee","keysFunc","index","iterable","Object","props","length","key"],"sources":["D:/IDEAproject/Front-end logistics/node_modules/lodash-es/_createBaseFor.js"],"sourcesContent":["/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\n\nexport default createBaseFor;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,aAAaA,CAACC,SAAS,EAAE;EAChC,OAAO,UAASC,MAAM,EAAEC,QAAQ,EAAEC,QAAQ,EAAE;IAC1C,IAAIC,KAAK,GAAG,CAAC,CAAC;MACVC,QAAQ,GAAGC,MAAM,CAACL,MAAM,CAAC;MACzBM,KAAK,GAAGJ,QAAQ,CAACF,MAAM,CAAC;MACxBO,MAAM,GAAGD,KAAK,CAACC,MAAM;IAEzB,OAAOA,MAAM,EAAE,EAAE;MACf,IAAIC,GAAG,GAAGF,KAAK,CAACP,SAAS,GAAGQ,MAAM,GAAG,EAAEJ,KAAK,CAAC;MAC7C,IAAIF,QAAQ,CAACG,QAAQ,CAACI,GAAG,CAAC,EAAEA,GAAG,EAAEJ,QAAQ,CAAC,KAAK,KAAK,EAAE;QACpD;MACF;IACF;IACA,OAAOJ,MAAM;EACf,CAAC;AACH;AAEA,eAAeF,aAAa","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|