irctokens
Version:
RFC1459 and IRCv3 protocol tokeniser
7 lines • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TAG_ESCAPED = exports.TAG_UNESCAPED_REGEX = exports.TAG_UNESCAPED = void 0;
exports.TAG_UNESCAPED = ['\\', ' ', ';', '\r', '\n'];
exports.TAG_UNESCAPED_REGEX = [/\\/g, / /g, /;/g, /\r/g, /\n/g];
exports.TAG_ESCAPED = ['\\\\', '\\s', '\\:', '\\r', '\\n'];
//# sourceMappingURL=const.js.map