(keys: RedisVariadicArgument)
| 138 | } |
| 139 | |
| 140 | pushKeysLength(keys: RedisVariadicArgument) { |
| 141 | if (Array.isArray(keys)) { |
| 142 | this.#redisArgs.push(keys.length.toString()); |
| 143 | } else { |
| 144 | this.#redisArgs.push('1'); |
| 145 | } |
| 146 | this.pushKeys(keys); |
| 147 | } |
| 148 | |
| 149 | pushKeys(keys: RedisVariadicArgument) { |
| 150 | if (Array.isArray(keys)) { |
no test coverage detected