-first commit
This commit is contained in:
19
node_modules/@redis/client/dist/lib/commands/MOVE.js
generated
vendored
Normal file
19
node_modules/@redis/client/dist/lib/commands/MOVE.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
/**
|
||||
* Constructs the MOVE command
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param key - The key to move
|
||||
* @param db - The destination database index
|
||||
* @see https://redis.io/commands/move/
|
||||
*/
|
||||
parseCommand(parser, key, db) {
|
||||
parser.push('MOVE');
|
||||
parser.pushKey(key);
|
||||
parser.push(db.toString());
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=MOVE.js.map
|
||||
Reference in New Issue
Block a user