Fix pngjs test lint failure (again)

This commit is contained in:
Jason Cheatham 2017-09-07 23:57:58 -04:00
parent 8c734c2da5
commit aa4ee82744

View File

@ -26,10 +26,10 @@ const pngs = [
const png = pngs[0];
if (png.readable === true) {
if (png.readable) {
console.log('readable');
}
if (png.writable === true) {
if (png.writable) {
console.log('writable');
}
png.width === 1;