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