-first commit
This commit is contained in:
17
node_modules/@redis/client/dist/lib/commands/HKEYS.js
generated
vendored
Normal file
17
node_modules/@redis/client/dist/lib/commands/HKEYS.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
CACHEABLE: true,
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Gets all field names in a hash
|
||||
* @param parser - The Redis command parser
|
||||
* @param key - Key of the hash
|
||||
*/
|
||||
parseCommand(parser, key) {
|
||||
parser.push('HKEYS');
|
||||
parser.pushKey(key);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=HKEYS.js.map
|
||||
Reference in New Issue
Block a user