Also add 0x05 and 0x06 to ignored

cpsdqs/unified-input
cpsdqs 7 years ago
parent 9affe93ae5
commit 6725734900
Signed by untrusted user: cpsdqs
GPG Key ID: 3F59586BB7448DD1
  1. 2
      js/demo.js

@ -84,7 +84,7 @@ class ANSIParser {
this.handler('write', character)
} else if (code < 0x03) this.handler('_null')
else if (code === 0x03) this.handler('sigint')
else if (code < 0x05) this.handler('_null')
else if (code <= 0x06) this.handler('_null')
else if (code === 0x07) this.handler('bell')
else if (code === 0x08) this.handler('back')
else if (code === 0x0a) this.handler('new-line')

Loading…
Cancel
Save