-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

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

@@ -0,0 +1,26 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseZInterArguments = void 0;
const generic_transformers_1 = require("./generic-transformers");
function parseZInterArguments(parser, keys, options) {
(0, generic_transformers_1.parseZKeysArguments)(parser, keys);
if (options?.AGGREGATE) {
parser.push('AGGREGATE', options.AGGREGATE);
}
}
exports.parseZInterArguments = parseZInterArguments;
exports.default = {
IS_READ_ONLY: true,
/**
* Intersects multiple sorted sets and returns the result as a new sorted set.
* @param parser - The Redis command parser.
* @param keys - Keys of the sorted sets to intersect.
* @param options - Optional parameters for the intersection operation.
*/
parseCommand(parser, keys, options) {
parser.push('ZINTER');
parseZInterArguments(parser, keys, options);
},
transformReply: undefined
};
//# sourceMappingURL=ZINTER.js.map