Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/4b27a13a523ca440700c3e5abccd5dfd.json
2020-12-31 20:18:50 +00:00

1 line
593 B
JSON

{"ast":null,"code":"/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n\n return result;\n}\n\nmodule.exports = baseTimes;","map":null,"metadata":{},"sourceType":"script"}