All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.util.loop.js Maven / Gradle / Ivy

The newest version!
module.exports = function loop (n, f) {
  var result = Array(n)
  for (var i = 0; i < n; ++i) {
    result[i] = f(i)
  }
  return result
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy