-first commit
This commit is contained in:
18
node_modules/@redis/client/dist/lib/commands/HINCRBYFLOAT.js
generated
vendored
Normal file
18
node_modules/@redis/client/dist/lib/commands/HINCRBYFLOAT.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
/**
|
||||
* Increments the float value of a field in a hash by the given amount
|
||||
* @param parser - The Redis command parser
|
||||
* @param key - Key of the hash
|
||||
* @param field - Field to increment
|
||||
* @param increment - Increment amount (float)
|
||||
*/
|
||||
parseCommand(parser, key, field, increment) {
|
||||
parser.push('HINCRBYFLOAT');
|
||||
parser.pushKey(key);
|
||||
parser.push(field, increment.toString());
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=HINCRBYFLOAT.js.map
|
||||
Reference in New Issue
Block a user