Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/INCRBY.js
2025-11-11 12:36:06 +07:00

19 lines
559 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
/**
* Constructs the INCRBY command
*
* @param parser - The command parser
* @param key - The key to increment
* @param increment - The amount to increment by
* @see https://redis.io/commands/incrby/
*/
parseCommand(parser, key, increment) {
parser.push('INCRBY');
parser.pushKey(key);
parser.push(increment.toString());
},
transformReply: undefined
};
//# sourceMappingURL=INCRBY.js.map