15 lines
455 B
JavaScript
15 lines
455 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Returns a serialized payload representing the current functions loaded in the server
|
|
* @param parser - The Redis command parser
|
|
*/
|
|
parseCommand(parser) {
|
|
parser.push('FUNCTION', 'DUMP');
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=FUNCTION_DUMP.js.map
|