standardize more

This commit is contained in:
Zeke Sikelianos 2016-03-28 16:19:18 -07:00 committed by Kevin Sawicki
parent 9db733a4ff
commit 5e4696f4a7
6 changed files with 23 additions and 19 deletions

View file

@ -45,7 +45,7 @@ describe('nativeImage module', () => {
assert.equal(nsimage.length, 8)
// If all bytes are null, that's Bad
assert.equal(nsimage.reduce((acc, x) => acc || (x != 0), false), true)
assert.equal(nsimage.reduce((acc, x) => acc || (x !== 0), false), true)
})
})
})