About
This dependency reimplents the native Array.prototype.forEach()
method. It is supported by all modern browsers and Node.js versions since about 11 years.
// Loop over all elements in an array
const arr = [1, 2, 3, 4, 5];
arr.forEach(element => console.log(element));
// 1
// 2
// 3
// 4
// 5