15 lines
422 B
JavaScript
15 lines
422 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Returns the node ID of the current Redis Cluster node
|
|
* @param parser - The Redis command parser
|
|
*/
|
|
parseCommand(parser) {
|
|
parser.push('CLUSTER', 'MYID');
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=CLUSTER_MYID.js.map
|