1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-04 18:19:15 +02:00

converting to spaces

This commit is contained in:
Kevin Kwok 2015-06-14 13:14:39 -04:00 committed by Jeff Schiller
parent b451b46828
commit f460784a48
3 changed files with 486 additions and 486 deletions

2
io.js
View file

@ -15,7 +15,7 @@ bitjs.io = bitjs.io || {};
(function() {
// mask for getting the Nth bit (zero-based)
bitjs.BIT = [ 0x01, 0x02, 0x04, 0x08,
bitjs.BIT = [ 0x01, 0x02, 0x04, 0x08,
0x10, 0x20, 0x40, 0x80,
0x100, 0x200, 0x400, 0x800,
0x1000, 0x2000, 0x4000, 0x8000];