From 727c98c9dae516a2070eb950410314380a20c974 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 26 Jun 2026 22:03:19 +0900 Subject: style: switch from tabs to 2-space indentation --- packages/cli/src/ndjson.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'packages/cli/src/ndjson.ts') diff --git a/packages/cli/src/ndjson.ts b/packages/cli/src/ndjson.ts index 57093c1..5902354 100644 --- a/packages/cli/src/ndjson.ts +++ b/packages/cli/src/ndjson.ts @@ -6,13 +6,13 @@ */ export interface SplitResult { - readonly lines: readonly string[]; - readonly rest: string; + readonly lines: readonly string[]; + readonly rest: string; } export function splitNdjsonLines(buffer: string): SplitResult { - const parts = buffer.split("\n"); - const rest = parts[parts.length - 1] ?? ""; - const lines = parts.slice(0, -1).filter((l) => l.length > 0); - return { lines, rest }; + const parts = buffer.split("\n"); + const rest = parts[parts.length - 1] ?? ""; + const lines = parts.slice(0, -1).filter((l) => l.length > 0); + return { lines, rest }; } -- cgit v1.2.3