Compare commits

..

No commits in common. "252863c813c3a2341e5c3887683e084a7d9f4ef9" and "cca6de18773822788548d7ab27d48537a9738e2f" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -59,10 +59,6 @@ export async function cliPrompt(
Deno.exit(130);
}
if (byte === 13) { // Enter
break;
}
// Escape sequence?
if (byte === 27 && i + 1 < n && buf[i + 1] === 91) {
const third = buf[i + 2];

View File

@ -1,6 +1,6 @@
{
"name": "@bearmetal/pdf-tools",
"version": "1.0.6",
"version": "1.0.5",
"license": "GPL 3.0",
"tasks": {
"dev": "deno run -A --env-file=.env main.ts",