Skip to content
Permalink
ffd96b38fb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
0 contributors

Users who have contributed to this file

17 lines (15 sloc) 526 Bytes
var Bottleneck = require('../bottleneck.js')
var now = Date.now()
var limiter = new Bottleneck({
reservoir: 2,
reservoirIncreaseAmount: 2,
reservoirIncreaseInterval: 200
})
var f1 = () => {
var secDiff = Math.floor((Date.now() - now) / 100)
return Promise.resolve(`[${secDiff}]`)
}
limiter.schedule(f1).then((x) => process.stdout.write(x))
limiter.schedule(f1).then((x) => process.stdout.write(x))
limiter.schedule(f1).then((x) => process.stdout.write(x))
limiter.schedule(f1).then((x) => process.stdout.write(x))