(vals: RedisVariadicArgument)
| 95 | }; |
| 96 | |
| 97 | pushVariadic(vals: RedisVariadicArgument) { |
| 98 | if (Array.isArray(vals)) { |
| 99 | for (const val of vals) { |
| 100 | this.push(val); |
| 101 | } |
| 102 | } else { |
| 103 | this.push(vals); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | pushVariadicWithLength(vals: RedisVariadicArgument) { |
| 108 | if (Array.isArray(vals)) { |
no test coverage detected