function Limiter(opts) {
this.id = opts.id;
this.db = opts.db;
this.tidy = opts.tidy || false;
// ... ...
}
emmm,but tidy = this.key !
Limiter.prototype.get = function (fn) {
var db = this.db;
var tidy = this.key;
var duration = this.duration;
// ... ...
}
node-ratelimiter/index.js
Line 62 in 831ee50
emmm,but
tidy = this.key!