You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tiny JS module to pick 'next' thing from list of things.
usage
var Picker = require('pick-next');
var colors = new Picker({list: ['red', 'blue', 'green']});
colors.next() // red
colors.next() // blue
colors.next() // green
colors.next() // red...
About
Tiny JS module to pick 'next' thing from list of things.