NodeRedis/node-redis

View on GitHub
packages/bloom/lib/commands/count-min-sketch/INITBYDIM.ts

Summary

Maintainability
A
1 hr
Test Coverage
export const FIRST_KEY_INDEX = 1;

export function transformArguments(key: string, width: number, depth: number): Array<string> {
    return ['CMS.INITBYDIM', key, width.toString(), depth.toString()];
}

export declare function transformReply(): 'OK';