From 5a56849df8b52fb000b31d7150cf1613f81ec6ca Mon Sep 17 00:00:00 2001 From: Paris Date: Fri, 10 Jun 2016 19:02:49 +0300 Subject: [PATCH] Stop using binary literals. Non ES6 compatible --- src/xterm.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/xterm.js b/src/xterm.js index 273fdca5..2ba64e26 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -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 } /*