@silverwind/ioredis-mock
Version:
This library emulates ioredis by performing all operations in-memory.
17 lines (14 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.decrby = decrby;
function decrby(key, decrement = 0) {
if (!this.data.has(key)) {
this.data.set(key, '0');
}
const curVal = Number(this.data.get(key));
const nextVal = curVal - parseInt(decrement, 10);
this.data.set(key, nextVal.toString());
return nextVal;
}