1.0.1 • Published 4 years ago

arrayindexoverflow v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

arrayindexoverflow

Reset array index in case of overflow

Example...

const arrayindexoverflow = require('arrayindexoverflow');
var array_index = 5;
console.log(arrayindexoverflow(['a','b','c','d','e'], array_index)); //Returs "a"
var array_index = 11;
console.log(arrayindexoverflow(['a','b','c','d','e'], array_index)); //Returs "b"
1.0.1

4 years ago

1.0.0

4 years ago