assets9-im
Version:
Generate icons and splash screens for cordova / meteor apps. (with ImageMagick)
25 lines (14 loc) • 386 B
JavaScript
// action( item , index , list , done )
module.exports = function( list , action , done ){
let currentIndex = -1;
function innerLoop(){
currentIndex++
if( currentIndex >= list.length ){
done()
} else {
action( list[currentIndex] , currentIndex , list , innerLoop )
}
}
innerLoop()
}