Files
Star-wars-card-game/node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYDIM.js
2026-01-28 00:55:06 +03:00

9 lines
340 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = exports.FIRST_KEY_INDEX = void 0;
exports.FIRST_KEY_INDEX = 1;
function transformArguments(key, width, depth) {
return ['CMS.INITBYDIM', key, width.toString(), depth.toString()];
}
exports.transformArguments = transformArguments;