-first commit

This commit is contained in:
2025-11-11 12:36:06 +07:00
commit b99c214434
5683 changed files with 713336 additions and 0 deletions

27
node_modules/@redis/client/dist/lib/commands/LMPOP.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseLMPopArguments = void 0;
function parseLMPopArguments(parser, keys, side, options) {
parser.pushKeysLength(keys);
parser.push(side);
if (options?.COUNT !== undefined) {
parser.push('COUNT', options.COUNT.toString());
}
}
exports.parseLMPopArguments = parseLMPopArguments;
exports.default = {
IS_READ_ONLY: false,
/**
* Constructs the LMPOP command
*
* @param parser - The command parser
* @param args - Arguments including keys, side (LEFT or RIGHT), and options
* @see https://redis.io/commands/lmpop/
*/
parseCommand(parser, ...args) {
parser.push('LMPOP');
parseLMPopArguments(parser, ...args);
},
transformReply: undefined
};
//# sourceMappingURL=LMPOP.js.map