17 lines
485 B
JavaScript
17 lines
485 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Constructs the MEMORY MALLOC-STATS command
|
|
*
|
|
* @param parser - The command parser
|
|
* @see https://redis.io/commands/memory-malloc-stats/
|
|
*/
|
|
parseCommand(parser) {
|
|
parser.push('MEMORY', 'MALLOC-STATS');
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=MEMORY_MALLOC-STATS.js.map
|