mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Stop using binary literals. Non ES6 compatible
This commit is contained in:
+5
-5
@@ -1089,11 +1089,11 @@
|
||||
* Flags used to render terminal text properly
|
||||
*/
|
||||
Terminal.flags = {
|
||||
BOLD: 0b00001,
|
||||
UNDERLINE: 0b00010,
|
||||
BLINK: 0b00100,
|
||||
INVERSE: 0b01000,
|
||||
INVISIBLE: 0b10000
|
||||
BOLD: 1,
|
||||
UNDERLINE: 2,
|
||||
BLINK: 4,
|
||||
INVERSE: 8,
|
||||
INVISIBLE: 16
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user