17 lines
473 B
JavaScript
17 lines
473 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
/**
|
|
* Constructs the PERSIST command
|
|
*
|
|
* @param parser - The command parser
|
|
* @param key - The key to remove the expiration from
|
|
* @see https://redis.io/commands/persist/
|
|
*/
|
|
parseCommand(parser, key) {
|
|
parser.push('PERSIST');
|
|
parser.pushKey(key);
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=PERSIST.js.map
|