Skip to content

Commit 4453106

Browse files
committed
fix: format
1 parent f3f49e4 commit 4453106

File tree

1 file changed

+2
-2
lines changed
  • packages/zod/src/v4/locales

1 file changed

+2
-2
lines changed

packages/zod/src/v4/locales/nl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import type { $ZodStringFormats } from "../core/checks.js";
22
import type * as errors from "../core/errors.js";
33
import * as util from "../core/util.js";
44

5-
const Sizable: Record<string, { unit: string; }> = {
5+
const Sizable: Record<string, { unit: string }> = {
66
string: { unit: "tekens" },
77
file: { unit: "bytes" },
88
array: { unit: "elementen" },
99
set: { unit: "elementen" },
1010
};
1111

12-
function getSizing(origin: string): { unit: string; } | null {
12+
function getSizing(origin: string): { unit: string } | null {
1313
return Sizable[origin] ?? null;
1414
}
1515

0 commit comments

Comments
 (0)