filter: add a break statement

This commit is contained in:
Alex Gleason 2023-03-28 16:26:33 -05:00
parent ae7d12ed30
commit 84b5d56cb6
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -27,6 +27,7 @@ for await (const line of readLines(Deno.stdin)) {
if (msg.action === 'accept') {
console.log(JSON.stringify(event));
break;
}
}
}