// Tests are split to work on older browsers// where deepEqual will fail to compare NaN in arraysvar result = btools.read(
'g', [0x00,0x00,0xc1,0xff,0x00,0x00]);
assert.equal(result.length, 3);
assert.equal(result[0], 0);
assert.ok(isNaN(result[1]));
assert.equal(result[2], 0);