1234567891011121314151617181920 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // Not exported from index
- /** @private */
- export class TextMessageFormat {
- static write(output) {
- return `${output}${TextMessageFormat.RecordSeparator}`;
- }
- static parse(input) {
- if (input[input.length - 1] !== TextMessageFormat.RecordSeparator) {
- throw new Error("Message is incomplete.");
- }
- const messages = input.split(TextMessageFormat.RecordSeparator);
- messages.pop();
- return messages;
- }
- }
- TextMessageFormat.RecordSeparatorCode = 0x1e;
- TextMessageFormat.RecordSeparator = String.fromCharCode(TextMessageFormat.RecordSeparatorCode);
- //# sourceMappingURL=TextMessageFormat.js.map
|