Skip to content

Commit

Permalink
[autorelease] Remove stray console.log.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Dec 11, 2023
1 parent 60ddb36 commit 2aa7222
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/pack-resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ import { readdir, readFile, writeFile } from 'fs/promises';

function isASCII(buffer) {
for (const byte of buffer)
if ((byte < 0x20 && byte !== 0x09 && byte !== 0x0a && byte !== 0x0d) || byte >= 0x7f) {
console.log(byte);
if ((byte < 0x20 && byte !== 0x09 && byte !== 0x0a && byte !== 0x0d) || byte >= 0x7f)
return false;
}
return true;
}

Expand Down

0 comments on commit 2aa7222

Please sign in to comment.