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

19 lines
529 B
JavaScript

"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