Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/SCRIPT_DEBUG.js
2025-11-11 12:36:06 +07:00

18 lines
519 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
NOT_KEYED_COMMAND: true,
IS_READ_ONLY: true,
/**
* Constructs the SCRIPT DEBUG command
*
* @param parser - The command parser
* @param mode - Debug mode: YES, SYNC, or NO
* @see https://redis.io/commands/script-debug/
*/
parseCommand(parser, mode) {
parser.push('SCRIPT', 'DEBUG', mode);
},
transformReply: undefined
};
//# sourceMappingURL=SCRIPT_DEBUG.js.map