-first commit
This commit is contained in:
19
node_modules/@redis/client/dist/lib/commands/SCRIPT_EXISTS.js
generated
vendored
Normal file
19
node_modules/@redis/client/dist/lib/commands/SCRIPT_EXISTS.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
NOT_KEYED_COMMAND: true,
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Constructs the SCRIPT EXISTS command
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param sha1 - One or more SHA1 digests of scripts
|
||||
* @see https://redis.io/commands/script-exists/
|
||||
*/
|
||||
parseCommand(parser, sha1) {
|
||||
parser.push('SCRIPT', 'EXISTS');
|
||||
parser.pushVariadic(sha1);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=SCRIPT_EXISTS.js.map
|
||||
Reference in New Issue
Block a user