UNPKG

261 BJavaScriptView Raw
1/**
2 * Some byte values, used as per STOMP specifications.
3 *
4 * Part of `@stomp/stompjs`.
5 *
6 * @internal
7 */
8export const BYTE = {
9 // LINEFEED byte (octet 10)
10 LF: '\x0A',
11 // NULL byte (octet 0)
12 NULL: '\x00',
13};
14//# sourceMappingURL=byte.js.map
\No newline at end of file