UNPKG

@adguard/agtree

Version:
26 lines (23 loc) 639 B
/* * AGTree v4.1.1 (build date: Thu, 23 Apr 2026 09:15:37 GMT) * (c) 2026 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ import camelCaseKeys from 'camelcase-keys'; /** * @file Zod camelCase utility. */ /** * Transforms Zod schema to camelCase. * * @see {@link https://github.com/colinhacks/zod/issues/486#issuecomment-1501097361} * * @param zod Zod schema. * * @returns Zod schema with camelCase properties. */ const zodToCamelCase = (zod) => { return zod.transform((val) => camelCaseKeys(val)); }; export { zodToCamelCase };