@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
17 lines (16 loc) • 669 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = exports.FIRST_KEY_INDEX = void 0;
const generic_transformers_1 = require("./generic-transformers");
exports.FIRST_KEY_INDEX = 1;
function transformArguments(destination, keys, options) {
const args = (0, generic_transformers_1.pushVerdictArgument)(["ZUNIONSTORE", destination], keys);
if (options?.WEIGHTS) {
args.push("WEIGHTS", ...options.WEIGHTS.map((weight) => weight.toString()));
}
if (options?.AGGREGATE) {
args.push("AGGREGATE", options.AGGREGATE);
}
return args;
}
exports.transformArguments = transformArguments;
;