You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
9 lines
348 B
TypeScript
9 lines
348 B
TypeScript
import { RedisCommandArguments } from '.';
|
|
import { pushVerdictArguments } from './generic-transformers';
|
|
|
|
export function transformArguments(sha1: string | Array<string>): RedisCommandArguments {
|
|
return pushVerdictArguments(['SCRIPT', 'EXISTS'], sha1);
|
|
}
|
|
|
|
export { transformBooleanArrayReply as transformReply } from './generic-transformers';
|