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

21 lines
640 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
IS_READ_ONLY: false,
/**
* Constructs the SMOVE command
*
* @param parser - The command parser
* @param source - The source set key
* @param destination - The destination set key
* @param member - The member to move
* @see https://redis.io/commands/smove/
*/
parseCommand(parser, source, destination, member) {
parser.push('SMOVE');
parser.pushKeys([source, destination]);
parser.push(member);
},
transformReply: undefined
};
//# sourceMappingURL=SMOVE.js.map