1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix SUNIONSTORE

This commit is contained in:
dovi
2023-05-03 18:51:12 -04:00
parent 627c9122ef
commit 4de409e0ad
3 changed files with 44 additions and 37 deletions

View File

@@ -152,6 +152,7 @@ import SREM from './SREM';
import SSCAN from './SSCAN';
import STRLEN from './STRLEN';
import SUNION from './SUNION';
import SUNIONSTORE from './SUNIONSTORE';
import TOUCH from './TOUCH';
import TTL from './TTL';
import TYPE from './TYPE';
@@ -507,6 +508,8 @@ export default {
strLen: STRLEN,
SUNION,
sUnion: SUNION,
SUNIONSTORE,
sUnionStore: SUNIONSTORE,
TOUCH,
touch: TOUCH,
TTL,