From 1c74f09177eb788e360d3e0f5ce429fd220fae4f Mon Sep 17 00:00:00 2001 From: Johann Schopplich Date: Mon, 10 Nov 2025 14:34:13 +0100 Subject: [PATCH] chore: fix linting error --- packages/toon/src/decode/expand.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/toon/src/decode/expand.ts b/packages/toon/src/decode/expand.ts index 94b9364..dd6bbb9 100644 --- a/packages/toon/src/decode/expand.ts +++ b/packages/toon/src/decode/expand.ts @@ -57,7 +57,6 @@ export function expandPathsSafe(value: JsonValue, strict: boolean): JsonValue { const quotedKeys = (value as ObjectWithQuotedKeys)[QUOTED_KEY_MARKER] for (const [key, keyValue] of Object.entries(value)) { - // Skip expansion for keys that were originally quoted const isQuoted = quotedKeys?.has(key)