15 lines
412 B
JavaScript
15 lines
412 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.default = {
|
||
|
|
/**
|
||
|
|
* Decrements the integer value of a key by one
|
||
|
|
* @param parser - The Redis command parser
|
||
|
|
* @param key - Key to decrement
|
||
|
|
*/
|
||
|
|
parseCommand(parser, key) {
|
||
|
|
parser.push('DECR');
|
||
|
|
parser.pushKey(key);
|
||
|
|
},
|
||
|
|
transformReply: undefined
|
||
|
|
};
|
||
|
|
//# sourceMappingURL=DECR.js.map
|