style(cli): apply prettier formatting
Pre-commit hook ran prettier on the prior commit but left the reformats unstaged. Folding them in here so the branch is clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -107,10 +107,5 @@ function write(conn: net.Socket, frame: ResponseFrame): void {
|
||||
function isRequestFrame(x: unknown): x is RequestFrame {
|
||||
if (!x || typeof x !== 'object') return false;
|
||||
const o = x as Record<string, unknown>;
|
||||
return (
|
||||
typeof o.id === 'string' &&
|
||||
typeof o.command === 'string' &&
|
||||
typeof o.args === 'object' &&
|
||||
o.args !== null
|
||||
);
|
||||
return typeof o.id === 'string' && typeof o.command === 'string' && typeof o.args === 'object' && o.args !== null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user