-first commit
This commit is contained in:
22
node_modules/@redis/client/dist/lib/commands/LMOVE.js
generated
vendored
Normal file
22
node_modules/@redis/client/dist/lib/commands/LMOVE.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
IS_READ_ONLY: false,
|
||||
/**
|
||||
* Constructs the LMOVE command
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param source - The source list key
|
||||
* @param destination - The destination list key
|
||||
* @param sourceSide - The side to pop from (LEFT or RIGHT)
|
||||
* @param destinationSide - The side to push to (LEFT or RIGHT)
|
||||
* @see https://redis.io/commands/lmove/
|
||||
*/
|
||||
parseCommand(parser, source, destination, sourceSide, destinationSide) {
|
||||
parser.push('LMOVE');
|
||||
parser.pushKeys([source, destination]);
|
||||
parser.push(sourceSide, destinationSide);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=LMOVE.js.map
|
||||
Reference in New Issue
Block a user