1.0.1 • Published 7 years ago

@amphibian/iterate-up-array v1.0.1

Weekly downloads
10
License
ISC
Repository
gitlab
Last release
7 years ago

iterate-up-array

build status

while loop abstraction for looping up through indices from 0 to Array.length

npm install @amphibian/iterate-up-array
var iterateUpArray = require('@amphibian/iterate-up-array');
var array = ['zero', 'one', 'two'];

// Iterate from the first index to the last
iterateUpArray(array, function (index, i) {
    console.log(index, i); // zero 0, one 1, two 2
});

// Iterate from the first index to the last, but stop if the key is `one`
var question = iterateUpArray(array, function (index, i, end) {
    console.log(index, i); // zero 0, one 1

    if (index === 'one') {
        end('hola que hora es');
    }
});

console.log(question); // > hola que hora es