We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f49e4 commit 4453106Copy full SHA for 4453106
packages/zod/src/v4/locales/nl.ts
@@ -2,14 +2,14 @@ import type { $ZodStringFormats } from "../core/checks.js";
2
import type * as errors from "../core/errors.js";
3
import * as util from "../core/util.js";
4
5
-const Sizable: Record<string, { unit: string; }> = {
+const Sizable: Record<string, { unit: string }> = {
6
string: { unit: "tekens" },
7
file: { unit: "bytes" },
8
array: { unit: "elementen" },
9
set: { unit: "elementen" },
10
};
11
12
-function getSizing(origin: string): { unit: string; } | null {
+function getSizing(origin: string): { unit: string } | null {
13
return Sizable[origin] ?? null;
14
}
15
0 commit comments