Stop using binary literals. Non ES6 compatible

This commit is contained in:
Paris
2016-06-10 19:02:49 +03:00
parent c908f849c5
commit 5a56849df8
+5 -5
View File
@@ -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
}
/*