16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.default = {
|
||
|
|
NOT_KEYED_COMMAND: true,
|
||
|
|
IS_READ_ONLY: true,
|
||
|
|
/**
|
||
|
|
* Returns the given string
|
||
|
|
* @param parser - The Redis command parser
|
||
|
|
* @param message - Message to echo back
|
||
|
|
*/
|
||
|
|
parseCommand(parser, message) {
|
||
|
|
parser.push('ECHO', message);
|
||
|
|
},
|
||
|
|
transformReply: undefined
|
||
|
|
};
|
||
|
|
//# sourceMappingURL=ECHO.js.map
|