UNPKG
ticking-stompjs
Version:
latest (7.0.0)
7.0.0
STOMP client for Javascript and Typescript
github.com/stomp-js/stompjs
stomp-js/stompjs
ticking-stompjs
/
esm6
/
byte.js
14 lines
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Some byte values, used as per STOMP specifications. * * Part of `
@stomp
/stompjs`. * *
@internal
*/
export
const
BYTE
= {
// LINEFEED byte (octet 10)
LF:
'\x0A'
,
// NULL byte (octet 0)
NULL
:
'\x00'
, };
//# sourceMappingURL=byte.js.map