1.0.1 • Published 4 years ago

@alirezazeynali/round-robin v1.0.1

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

round-robin-js

Round robin implementation with typescript

In javascript

    const {Selector} = require('@alirezazeynali/round-robin')

    const roundRobin = new Selector([1, 2, 3, 4])

    const el = roundRobin.next() // => 1

    // if achive the last index begin from first 

In typescript, you can import like this:

    import {Selector} from '@alirezazeynali/round-robin'