123456789101112 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.transformArguments = exports.IS_READ_ONLY = void 0;
- exports.IS_READ_ONLY = true;
- function transformArguments(pattern) {
- const args = ['PUBSUB', 'CHANNELS'];
- if (pattern) {
- args.push(pattern);
- }
- return args;
- }
- exports.transformArguments = transformArguments;
|