zod 4.5.3 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (348) hide show
  1. package/compile.cjs +19 -0
  2. package/index.cjs +19 -0
  3. package/locales/index.cjs +19 -0
  4. package/mini/index.cjs +19 -0
  5. package/package.json +8 -7
  6. package/src/v3/helpers/errorUtil.ts +1 -1
  7. package/src/v4/classic/checks.ts +0 -1
  8. package/src/v4/classic/external.ts +2 -0
  9. package/src/v4/classic/from-json-schema.ts +248 -25
  10. package/src/v4/classic/schemas.ts +255 -164
  11. package/src/v4/classic/tests/assignability.test.ts +59 -9
  12. package/src/v4/classic/tests/bigint.test.ts +6 -0
  13. package/src/v4/classic/tests/continuability.test.ts +2 -2
  14. package/src/v4/classic/tests/cyclic-data.test.ts +316 -0
  15. package/src/v4/classic/tests/default.test.ts +46 -0
  16. package/src/v4/classic/tests/enum.test.ts +9 -0
  17. package/src/v4/classic/tests/error.test.ts +130 -1
  18. package/src/v4/classic/tests/firstparty.test.ts +4 -0
  19. package/src/v4/classic/tests/from-json-schema.test.ts +157 -0
  20. package/src/v4/classic/tests/iban.test.ts +81 -0
  21. package/src/v4/classic/tests/instance-footprint.test.ts +18 -2
  22. package/src/v4/classic/tests/instanceof.test.ts +27 -7
  23. package/src/v4/classic/tests/issue-schema.test.ts +88 -56
  24. package/src/v4/classic/tests/object.test.ts +56 -0
  25. package/src/v4/classic/tests/optin-ladder.test.ts +3 -2
  26. package/src/v4/classic/tests/properties.test.ts +225 -0
  27. package/src/v4/classic/tests/recursive-types.test.ts +1 -1
  28. package/src/v4/classic/tests/standard-schema.test.ts +19 -0
  29. package/src/v4/classic/tests/string.test.ts +25 -0
  30. package/src/v4/classic/tests/template-literal.test.ts +33 -1
  31. package/src/v4/classic/tests/to-json-schema.test.ts +147 -3
  32. package/src/v4/classic/tests/validate.test.ts +569 -0
  33. package/src/v4/core/api.ts +30 -6
  34. package/src/v4/core/checks.ts +1 -101
  35. package/src/v4/core/compile.ts +193 -81
  36. package/src/v4/core/doc.ts +6 -2
  37. package/src/v4/core/errors.ts +3 -6
  38. package/src/v4/core/json-schema-generator.ts +2 -2
  39. package/src/v4/core/json-schema-processors.ts +226 -68
  40. package/src/v4/core/memoizer.ts +162 -36
  41. package/src/v4/core/parse.ts +37 -16
  42. package/src/v4/core/regexes.ts +10 -4
  43. package/src/v4/core/schemas.ts +314 -83
  44. package/src/v4/core/tests/cached.test.ts +54 -0
  45. package/src/v4/core/tests/compile-generative.test.ts +445 -0
  46. package/src/v4/core/tests/compile.test.ts +222 -2
  47. package/src/v4/core/tests/email-regex.test.ts +140 -0
  48. package/src/v4/core/tests/polyfill-collision.test.ts +46 -0
  49. package/src/v4/core/to-json-schema.ts +10 -8
  50. package/src/v4/core/util.ts +222 -147
  51. package/src/v4/core/versions.ts +2 -2
  52. package/src/v4/core/visit.ts +11 -0
  53. package/src/v4/locales/ar.ts +1 -0
  54. package/src/v4/locales/az.ts +1 -0
  55. package/src/v4/locales/be.ts +1 -0
  56. package/src/v4/locales/bg.ts +1 -0
  57. package/src/v4/locales/bn.ts +1 -0
  58. package/src/v4/locales/ca.ts +1 -0
  59. package/src/v4/locales/ckb.ts +1 -0
  60. package/src/v4/locales/cs.ts +1 -0
  61. package/src/v4/locales/da.ts +1 -0
  62. package/src/v4/locales/de.ts +1 -0
  63. package/src/v4/locales/el.ts +1 -0
  64. package/src/v4/locales/en.ts +1 -0
  65. package/src/v4/locales/eo.ts +1 -0
  66. package/src/v4/locales/es.ts +1 -0
  67. package/src/v4/locales/fa.ts +1 -0
  68. package/src/v4/locales/fi.ts +1 -0
  69. package/src/v4/locales/fr-CA.ts +1 -0
  70. package/src/v4/locales/fr.ts +1 -0
  71. package/src/v4/locales/gu.ts +1 -0
  72. package/src/v4/locales/he.ts +1 -0
  73. package/src/v4/locales/hi.ts +1 -0
  74. package/src/v4/locales/hr.ts +1 -0
  75. package/src/v4/locales/hu.ts +1 -0
  76. package/src/v4/locales/hy.ts +1 -0
  77. package/src/v4/locales/id.ts +1 -0
  78. package/src/v4/locales/is.ts +1 -0
  79. package/src/v4/locales/it.ts +1 -0
  80. package/src/v4/locales/ja.ts +1 -0
  81. package/src/v4/locales/ka.ts +1 -0
  82. package/src/v4/locales/km.ts +1 -0
  83. package/src/v4/locales/kn.ts +1 -0
  84. package/src/v4/locales/ko.ts +1 -0
  85. package/src/v4/locales/lt.ts +1 -0
  86. package/src/v4/locales/mk.ts +1 -0
  87. package/src/v4/locales/ms.ts +1 -0
  88. package/src/v4/locales/ne.ts +1 -0
  89. package/src/v4/locales/nl.ts +1 -0
  90. package/src/v4/locales/nn.ts +1 -0
  91. package/src/v4/locales/no.ts +1 -0
  92. package/src/v4/locales/ota.ts +1 -0
  93. package/src/v4/locales/pl.ts +1 -0
  94. package/src/v4/locales/ps.ts +1 -0
  95. package/src/v4/locales/pt-BR.ts +1 -0
  96. package/src/v4/locales/pt.ts +1 -0
  97. package/src/v4/locales/ro.ts +1 -0
  98. package/src/v4/locales/ru.ts +1 -0
  99. package/src/v4/locales/sk.ts +1 -0
  100. package/src/v4/locales/sl.ts +1 -0
  101. package/src/v4/locales/sv.ts +1 -0
  102. package/src/v4/locales/ta.ts +1 -0
  103. package/src/v4/locales/th.ts +1 -0
  104. package/src/v4/locales/tk.ts +1 -0
  105. package/src/v4/locales/tr.ts +1 -0
  106. package/src/v4/locales/uk.ts +1 -0
  107. package/src/v4/locales/ur.ts +1 -0
  108. package/src/v4/locales/uz.ts +1 -0
  109. package/src/v4/locales/vi.ts +1 -0
  110. package/src/v4/locales/yo.ts +1 -0
  111. package/src/v4/locales/zh-CN.ts +1 -0
  112. package/src/v4/locales/zh-TW.ts +1 -0
  113. package/src/v4/mini/checks.ts +0 -1
  114. package/src/v4/mini/external.ts +2 -0
  115. package/src/v4/mini/schemas.ts +38 -2
  116. package/src/v4/mini/tests/checks.test.ts +1 -1
  117. package/src/v4/mini/tests/computed.test.ts +11 -17
  118. package/src/v4/mini/tests/index.test.ts +8 -0
  119. package/src/v4/mini/tests/string.test.ts +16 -0
  120. package/v3/ZodError.cjs +19 -0
  121. package/v3/errors.cjs +19 -0
  122. package/v3/external.cjs +19 -0
  123. package/v3/helpers/enumUtil.cjs +19 -0
  124. package/v3/helpers/errorUtil.cjs +20 -1
  125. package/v3/helpers/errorUtil.js +1 -1
  126. package/v3/helpers/parseUtil.cjs +19 -0
  127. package/v3/helpers/partialUtil.cjs +19 -0
  128. package/v3/helpers/typeAliases.cjs +19 -0
  129. package/v3/helpers/util.cjs +19 -0
  130. package/v3/index.cjs +19 -0
  131. package/v3/standard-schema.cjs +19 -0
  132. package/v3/types.cjs +19 -0
  133. package/v4/classic/checks.cjs +20 -2
  134. package/v4/classic/checks.d.cts +1 -1
  135. package/v4/classic/checks.d.ts +1 -1
  136. package/v4/classic/checks.js +1 -1
  137. package/v4/classic/coerce.cjs +19 -0
  138. package/v4/classic/compat.cjs +19 -0
  139. package/v4/classic/deep-partial.cjs +19 -0
  140. package/v4/classic/errors.cjs +19 -0
  141. package/v4/classic/external.cjs +22 -1
  142. package/v4/classic/external.d.cts +1 -1
  143. package/v4/classic/external.d.ts +1 -1
  144. package/v4/classic/external.js +1 -1
  145. package/v4/classic/from-json-schema.cjs +264 -24
  146. package/v4/classic/from-json-schema.js +245 -24
  147. package/v4/classic/in-out.cjs +19 -0
  148. package/v4/classic/index.cjs +19 -0
  149. package/v4/classic/iso.cjs +19 -0
  150. package/v4/classic/parse.cjs +19 -0
  151. package/v4/classic/schemas.cjs +100 -31
  152. package/v4/classic/schemas.d.cts +17 -1
  153. package/v4/classic/schemas.d.ts +17 -1
  154. package/v4/classic/schemas.js +77 -29
  155. package/v4/core/api.cjs +37 -2
  156. package/v4/core/api.d.cts +6 -4
  157. package/v4/core/api.d.ts +6 -4
  158. package/v4/core/api.js +17 -2
  159. package/v4/core/checks.cjs +19 -96
  160. package/v4/core/checks.d.cts +1 -1
  161. package/v4/core/checks.d.ts +1 -1
  162. package/v4/core/checks.js +0 -96
  163. package/v4/core/compile.cjs +164 -65
  164. package/v4/core/compile.d.cts +18 -4
  165. package/v4/core/compile.d.ts +18 -4
  166. package/v4/core/compile.js +145 -66
  167. package/v4/core/core.cjs +19 -0
  168. package/v4/core/doc.cjs +26 -2
  169. package/v4/core/doc.js +7 -2
  170. package/v4/core/errors.cjs +21 -5
  171. package/v4/core/errors.js +2 -5
  172. package/v4/core/index.cjs +19 -0
  173. package/v4/core/json-schema-generator.cjs +20 -1
  174. package/v4/core/json-schema-generator.js +2 -2
  175. package/v4/core/json-schema-processors.cjs +215 -63
  176. package/v4/core/json-schema-processors.d.cts +17 -0
  177. package/v4/core/json-schema-processors.d.ts +17 -0
  178. package/v4/core/json-schema-processors.js +195 -64
  179. package/v4/core/json-schema.cjs +19 -0
  180. package/v4/core/memoizer.cjs +204 -36
  181. package/v4/core/memoizer.js +162 -36
  182. package/v4/core/parse.cjs +56 -16
  183. package/v4/core/parse.js +37 -16
  184. package/v4/core/regexes.cjs +29 -6
  185. package/v4/core/regexes.d.cts +2 -0
  186. package/v4/core/regexes.d.ts +2 -0
  187. package/v4/core/regexes.js +8 -4
  188. package/v4/core/registries.cjs +19 -0
  189. package/v4/core/schemas.cjs +285 -66
  190. package/v4/core/schemas.d.cts +34 -3
  191. package/v4/core/schemas.d.ts +34 -3
  192. package/v4/core/schemas.js +264 -65
  193. package/v4/core/standard-schema.cjs +19 -0
  194. package/v4/core/to-json-schema.cjs +29 -7
  195. package/v4/core/to-json-schema.d.cts +7 -3
  196. package/v4/core/to-json-schema.d.ts +7 -3
  197. package/v4/core/to-json-schema.js +8 -7
  198. package/v4/core/util.cjs +181 -143
  199. package/v4/core/util.d.cts +25 -4
  200. package/v4/core/util.d.ts +25 -4
  201. package/v4/core/util.js +160 -143
  202. package/v4/core/versions.cjs +21 -2
  203. package/v4/core/versions.d.cts +1 -1
  204. package/v4/core/versions.d.ts +1 -1
  205. package/v4/core/versions.js +2 -2
  206. package/v4/core/visit.cjs +31 -0
  207. package/v4/core/visit.js +12 -0
  208. package/v4/index.cjs +19 -0
  209. package/v4/locales/ar.cjs +1 -0
  210. package/v4/locales/ar.js +1 -0
  211. package/v4/locales/az.cjs +1 -0
  212. package/v4/locales/az.js +1 -0
  213. package/v4/locales/be.cjs +1 -0
  214. package/v4/locales/be.js +1 -0
  215. package/v4/locales/bg.cjs +1 -0
  216. package/v4/locales/bg.js +1 -0
  217. package/v4/locales/bn.cjs +1 -0
  218. package/v4/locales/bn.js +1 -0
  219. package/v4/locales/ca.cjs +1 -0
  220. package/v4/locales/ca.js +1 -0
  221. package/v4/locales/ckb.cjs +1 -0
  222. package/v4/locales/ckb.js +1 -0
  223. package/v4/locales/cs.cjs +1 -0
  224. package/v4/locales/cs.js +1 -0
  225. package/v4/locales/da.cjs +1 -0
  226. package/v4/locales/da.js +1 -0
  227. package/v4/locales/de.cjs +1 -0
  228. package/v4/locales/de.js +1 -0
  229. package/v4/locales/el.cjs +1 -0
  230. package/v4/locales/el.js +1 -0
  231. package/v4/locales/en.cjs +1 -0
  232. package/v4/locales/en.js +1 -0
  233. package/v4/locales/eo.cjs +1 -0
  234. package/v4/locales/eo.js +1 -0
  235. package/v4/locales/es.cjs +1 -0
  236. package/v4/locales/es.js +1 -0
  237. package/v4/locales/fa.cjs +1 -0
  238. package/v4/locales/fa.js +1 -0
  239. package/v4/locales/fi.cjs +1 -0
  240. package/v4/locales/fi.js +1 -0
  241. package/v4/locales/fr-CA.cjs +1 -0
  242. package/v4/locales/fr-CA.js +1 -0
  243. package/v4/locales/fr.cjs +1 -0
  244. package/v4/locales/fr.js +1 -0
  245. package/v4/locales/gu.cjs +1 -0
  246. package/v4/locales/gu.js +1 -0
  247. package/v4/locales/he.cjs +1 -0
  248. package/v4/locales/he.js +1 -0
  249. package/v4/locales/hi.cjs +1 -0
  250. package/v4/locales/hi.js +1 -0
  251. package/v4/locales/hr.cjs +1 -0
  252. package/v4/locales/hr.js +1 -0
  253. package/v4/locales/hu.cjs +1 -0
  254. package/v4/locales/hu.js +1 -0
  255. package/v4/locales/hy.cjs +1 -0
  256. package/v4/locales/hy.js +1 -0
  257. package/v4/locales/id.cjs +1 -0
  258. package/v4/locales/id.js +1 -0
  259. package/v4/locales/index.cjs +19 -0
  260. package/v4/locales/is.cjs +1 -0
  261. package/v4/locales/is.js +1 -0
  262. package/v4/locales/it.cjs +1 -0
  263. package/v4/locales/it.js +1 -0
  264. package/v4/locales/ja.cjs +1 -0
  265. package/v4/locales/ja.js +1 -0
  266. package/v4/locales/ka.cjs +1 -0
  267. package/v4/locales/ka.js +1 -0
  268. package/v4/locales/km.cjs +1 -0
  269. package/v4/locales/km.js +1 -0
  270. package/v4/locales/kn.cjs +1 -0
  271. package/v4/locales/kn.js +1 -0
  272. package/v4/locales/ko.cjs +1 -0
  273. package/v4/locales/ko.js +1 -0
  274. package/v4/locales/lt.cjs +1 -0
  275. package/v4/locales/lt.js +1 -0
  276. package/v4/locales/mk.cjs +1 -0
  277. package/v4/locales/mk.js +1 -0
  278. package/v4/locales/ms.cjs +1 -0
  279. package/v4/locales/ms.js +1 -0
  280. package/v4/locales/ne.cjs +1 -0
  281. package/v4/locales/ne.js +1 -0
  282. package/v4/locales/nl.cjs +1 -0
  283. package/v4/locales/nl.js +1 -0
  284. package/v4/locales/nn.cjs +1 -0
  285. package/v4/locales/nn.js +1 -0
  286. package/v4/locales/no.cjs +1 -0
  287. package/v4/locales/no.js +1 -0
  288. package/v4/locales/ota.cjs +1 -0
  289. package/v4/locales/ota.js +1 -0
  290. package/v4/locales/pl.cjs +1 -0
  291. package/v4/locales/pl.js +1 -0
  292. package/v4/locales/ps.cjs +1 -0
  293. package/v4/locales/ps.js +1 -0
  294. package/v4/locales/pt-BR.cjs +1 -0
  295. package/v4/locales/pt-BR.js +1 -0
  296. package/v4/locales/pt.cjs +1 -0
  297. package/v4/locales/pt.js +1 -0
  298. package/v4/locales/ro.cjs +1 -0
  299. package/v4/locales/ro.js +1 -0
  300. package/v4/locales/ru.cjs +1 -0
  301. package/v4/locales/ru.js +1 -0
  302. package/v4/locales/sk.cjs +1 -0
  303. package/v4/locales/sk.js +1 -0
  304. package/v4/locales/sl.cjs +1 -0
  305. package/v4/locales/sl.js +1 -0
  306. package/v4/locales/sv.cjs +1 -0
  307. package/v4/locales/sv.js +1 -0
  308. package/v4/locales/ta.cjs +1 -0
  309. package/v4/locales/ta.js +1 -0
  310. package/v4/locales/th.cjs +1 -0
  311. package/v4/locales/th.js +1 -0
  312. package/v4/locales/tk.cjs +1 -0
  313. package/v4/locales/tk.js +1 -0
  314. package/v4/locales/tr.cjs +1 -0
  315. package/v4/locales/tr.js +1 -0
  316. package/v4/locales/uk.cjs +1 -0
  317. package/v4/locales/uk.js +1 -0
  318. package/v4/locales/ur.cjs +1 -0
  319. package/v4/locales/ur.js +1 -0
  320. package/v4/locales/uz.cjs +1 -0
  321. package/v4/locales/uz.js +1 -0
  322. package/v4/locales/vi.cjs +1 -0
  323. package/v4/locales/vi.js +1 -0
  324. package/v4/locales/yo.cjs +1 -0
  325. package/v4/locales/yo.js +1 -0
  326. package/v4/locales/zh-CN.cjs +1 -0
  327. package/v4/locales/zh-CN.js +1 -0
  328. package/v4/locales/zh-TW.cjs +1 -0
  329. package/v4/locales/zh-TW.js +1 -0
  330. package/v4/mini/checks.cjs +20 -2
  331. package/v4/mini/checks.d.cts +1 -1
  332. package/v4/mini/checks.d.ts +1 -1
  333. package/v4/mini/checks.js +1 -1
  334. package/v4/mini/coerce.cjs +19 -0
  335. package/v4/mini/deep-partial.cjs +19 -0
  336. package/v4/mini/external.cjs +22 -1
  337. package/v4/mini/external.d.cts +1 -1
  338. package/v4/mini/external.d.ts +1 -1
  339. package/v4/mini/external.js +1 -1
  340. package/v4/mini/in-out.cjs +19 -0
  341. package/v4/mini/index.cjs +19 -0
  342. package/v4/mini/iso.cjs +19 -0
  343. package/v4/mini/parse.cjs +19 -0
  344. package/v4/mini/schemas.cjs +42 -4
  345. package/v4/mini/schemas.d.cts +8 -0
  346. package/v4/mini/schemas.d.ts +8 -0
  347. package/v4/mini/schemas.js +19 -2
  348. package/v4-mini/index.cjs +19 -0
package/v4/locales/mk.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON низа",
66
66
  e164: "E.164 број",
67
67
  credit_card: "број на кредитна картичка",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "внес",
70
71
  };
package/v4/locales/mk.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON низа",
40
40
  e164: "E.164 број",
41
41
  credit_card: "број на кредитна картичка",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "внес",
44
45
  };
package/v4/locales/ms.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "string JSON",
66
66
  e164: "nombor E.164",
67
67
  credit_card: "nombor kad kredit",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "input",
70
71
  };
package/v4/locales/ms.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "string JSON",
40
40
  e164: "nombor E.164",
41
41
  credit_card: "nombor kad kredit",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "input",
44
45
  };
package/v4/locales/ne.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON स्ट्रिङ",
66
66
  e164: "E.164 नम्बर",
67
67
  credit_card: "क्रेडिट कार्ड नम्बर",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "इनपुट",
70
71
  };
package/v4/locales/ne.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON स्ट्रिङ",
40
40
  e164: "E.164 नम्बर",
41
41
  credit_card: "क्रेडिट कार्ड नम्बर",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "इनपुट",
44
45
  };
package/v4/locales/nl.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON string",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "creditcardnummer",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "invoer",
70
71
  };
package/v4/locales/nl.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON string",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "creditcardnummer",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "invoer",
44
45
  };
package/v4/locales/nn.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-streng",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "kredittkortnummer",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "input",
70
71
  };
package/v4/locales/nn.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-streng",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "kredittkortnummer",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "input",
44
45
  };
package/v4/locales/no.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-streng",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "kredittkortnummer",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "input",
70
71
  };
package/v4/locales/no.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-streng",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "kredittkortnummer",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "input",
44
45
  };
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON metin",
66
66
  e164: "E.164 sayısı",
67
67
  credit_card: "i'tibâr kartı numarası",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "giren",
70
71
  };
package/v4/locales/ota.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON metin",
40
40
  e164: "E.164 sayısı",
41
41
  credit_card: "i'tibâr kartı numarası",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "giren",
44
45
  };
package/v4/locales/pl.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "ciąg znaków w formacie JSON",
66
66
  e164: "liczba E.164",
67
67
  credit_card: "numer karty kredytowej",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "wejście",
70
71
  };
package/v4/locales/pl.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "ciąg znaków w formacie JSON",
40
40
  e164: "liczba E.164",
41
41
  credit_card: "numer karty kredytowej",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "wejście",
44
45
  };
package/v4/locales/ps.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON متن",
66
66
  e164: "د E.164 شمېره",
67
67
  credit_card: "د کریډیټ کارت شمیره",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "ورودي",
70
71
  };
package/v4/locales/ps.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON متن",
40
40
  e164: "د E.164 شمېره",
41
41
  credit_card: "د کریډیټ کارت شمیره",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "ورودي",
44
45
  };
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "o texto JSON",
66
66
  e164: "o número E.164",
67
67
  credit_card: "o número de cartão de crédito",
68
+ iban: "o IBAN",
68
69
  jwt: "o JWT",
69
70
  template_literal: "a entrada",
70
71
  };
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "o texto JSON",
40
40
  e164: "o número E.164",
41
41
  credit_card: "o número de cartão de crédito",
42
+ iban: "o IBAN",
42
43
  jwt: "o JWT",
43
44
  template_literal: "a entrada",
44
45
  };
package/v4/locales/pt.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "o texto JSON",
66
66
  e164: "o número E.164",
67
67
  credit_card: "o número de cartão de crédito",
68
+ iban: "o IBAN",
68
69
  jwt: "o JWT",
69
70
  template_literal: "a entrada",
70
71
  };
package/v4/locales/pt.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "o texto JSON",
40
40
  e164: "o número E.164",
41
41
  credit_card: "o número de cartão de crédito",
42
+ iban: "o IBAN",
42
43
  jwt: "o JWT",
43
44
  template_literal: "a entrada",
44
45
  };
package/v4/locales/ro.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "șir JSON",
66
66
  e164: "număr E.164",
67
67
  credit_card: "număr de card de credit",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "intrare",
70
71
  };
package/v4/locales/ro.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "șir JSON",
40
40
  e164: "număr E.164",
41
41
  credit_card: "număr de card de credit",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "intrare",
44
45
  };
package/v4/locales/ru.cjs CHANGED
@@ -115,6 +115,7 @@ const error = () => {
115
115
  json_string: "JSON строка",
116
116
  e164: "номер E.164",
117
117
  credit_card: "номер кредитной карты",
118
+ iban: "IBAN",
118
119
  jwt: "JWT",
119
120
  template_literal: "ввод",
120
121
  };
package/v4/locales/ru.js CHANGED
@@ -89,6 +89,7 @@ const error = () => {
89
89
  json_string: "JSON строка",
90
90
  e164: "номер E.164",
91
91
  credit_card: "номер кредитной карты",
92
+ iban: "IBAN",
92
93
  jwt: "JWT",
93
94
  template_literal: "ввод",
94
95
  };
package/v4/locales/sk.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "reťazec vo formáte JSON",
66
66
  e164: "číslo E.164",
67
67
  credit_card: "číslo kreditnej karty",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "vstup",
70
71
  };
package/v4/locales/sk.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "reťazec vo formáte JSON",
40
40
  e164: "číslo E.164",
41
41
  credit_card: "číslo kreditnej karty",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "vstup",
44
45
  };
package/v4/locales/sl.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON niz",
66
66
  e164: "E.164 številka",
67
67
  credit_card: "številka kreditne kartice",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "vnos",
70
71
  };
package/v4/locales/sl.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON niz",
40
40
  e164: "E.164 številka",
41
41
  credit_card: "številka kreditne kartice",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "vnos",
44
45
  };
package/v4/locales/sv.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-sträng",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "kreditkortsnummer",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "mall-literal",
70
71
  };
package/v4/locales/sv.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-sträng",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "kreditkortsnummer",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "mall-literal",
44
45
  };
package/v4/locales/ta.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON சரம்",
66
66
  e164: "E.164 எண்",
67
67
  credit_card: "கடன் அட்டை எண்",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "input",
70
71
  };
package/v4/locales/ta.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON சரம்",
40
40
  e164: "E.164 எண்",
41
41
  credit_card: "கடன் அட்டை எண்",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "input",
44
45
  };
package/v4/locales/th.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "ข้อความแบบ JSON",
66
66
  e164: "เบอร์โทรศัพท์ระหว่างประเทศ (E.164)",
67
67
  credit_card: "หมายเลขบัตรเครดิต",
68
+ iban: "IBAN",
68
69
  jwt: "โทเคน JWT",
69
70
  template_literal: "ข้อมูลที่ป้อน",
70
71
  };
package/v4/locales/th.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "ข้อความแบบ JSON",
40
40
  e164: "เบอร์โทรศัพท์ระหว่างประเทศ (E.164)",
41
41
  credit_card: "หมายเลขบัตรเครดิต",
42
+ iban: "IBAN",
42
43
  jwt: "โทเคน JWT",
43
44
  template_literal: "ข้อมูลที่ป้อน",
44
45
  };
package/v4/locales/tk.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON setiri",
66
66
  e164: "E.164 nomeri",
67
67
  credit_card: "kredit kartynyň nomeri",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "şablon",
70
71
  };
package/v4/locales/tk.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON setiri",
40
40
  e164: "E.164 nomeri",
41
41
  credit_card: "kredit kartynyň nomeri",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "şablon",
44
45
  };
package/v4/locales/tr.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON dizesi",
66
66
  e164: "E.164 sayısı",
67
67
  credit_card: "kredi kartı numarası",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "Şablon dizesi",
70
71
  };
package/v4/locales/tr.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON dizesi",
40
40
  e164: "E.164 sayısı",
41
41
  credit_card: "kredi kartı numarası",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "Şablon dizesi",
44
45
  };
package/v4/locales/uk.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "рядок JSON",
66
66
  e164: "номер E.164",
67
67
  credit_card: "номер кредитної картки",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "вхідні дані",
70
71
  };
package/v4/locales/uk.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "рядок JSON",
40
40
  e164: "номер E.164",
41
41
  credit_card: "номер кредитної картки",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "вхідні дані",
44
45
  };
package/v4/locales/ur.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "جے ایس او این سٹرنگ",
66
66
  e164: "ای 164 نمبر",
67
67
  credit_card: "کریڈٹ کارڈ نمبر",
68
+ iban: "IBAN",
68
69
  jwt: "جے ڈبلیو ٹی",
69
70
  template_literal: "ان پٹ",
70
71
  };
package/v4/locales/ur.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "جے ایس او این سٹرنگ",
40
40
  e164: "ای 164 نمبر",
41
41
  credit_card: "کریڈٹ کارڈ نمبر",
42
+ iban: "IBAN",
42
43
  jwt: "جے ڈبلیو ٹی",
43
44
  template_literal: "ان پٹ",
44
45
  };
package/v4/locales/uz.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON satr",
66
66
  e164: "E.164 raqam",
67
67
  credit_card: "kredit karta raqami",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "kirish",
70
71
  };
package/v4/locales/uz.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON satr",
40
40
  e164: "E.164 raqam",
41
41
  credit_card: "kredit karta raqami",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "kirish",
44
45
  };
package/v4/locales/vi.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "chuỗi JSON",
66
66
  e164: "số E.164",
67
67
  credit_card: "số thẻ tín dụng",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "đầu vào",
70
71
  };
package/v4/locales/vi.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "chuỗi JSON",
40
40
  e164: "số E.164",
41
41
  credit_card: "số thẻ tín dụng",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "đầu vào",
44
45
  };
package/v4/locales/yo.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "ọ̀rọ̀ JSON",
66
66
  e164: "nọ́mbà E.164",
67
67
  credit_card: "nọmba kaadi gbese",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "ẹ̀rọ ìbáwọlé",
70
71
  };
package/v4/locales/yo.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "ọ̀rọ̀ JSON",
40
40
  e164: "nọ́mbà E.164",
41
41
  credit_card: "nọmba kaadi gbese",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "ẹ̀rọ ìbáwọlé",
44
45
  };
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON字符串",
66
66
  e164: "E.164号码",
67
67
  credit_card: "信用卡号",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "输入",
70
71
  };
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON字符串",
40
40
  e164: "E.164号码",
41
41
  credit_card: "信用卡号",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "输入",
44
45
  };
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON 字串",
66
66
  e164: "E.164 數值",
67
67
  credit_card: "信用卡號",
68
+ iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "輸入",
70
71
  };
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON 字串",
40
40
  e164: "E.164 數值",
41
41
  credit_card: "信用卡號",
42
+ iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "輸入",
44
45
  };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.toUpperCase = exports.toLowerCase = exports.trim = exports.normalize = exports.overwrite = exports.mime = exports.properties = exports.property = exports.endsWith = exports.startsWith = exports.includes = exports.uppercase = exports.lowercase = exports.regex = exports.length = exports.minLength = exports.maxLength = exports.size = exports.minSize = exports.maxSize = exports.multipleOf = exports.nonnegative = exports.nonpositive = exports.negative = exports.positive = exports.minimum = exports.gte = exports.gt = exports.maximum = exports.lte = exports.lt = void 0;
3
+ exports.toUpperCase = exports.toLowerCase = exports.trim = exports.normalize = exports.overwrite = exports.mime = exports.property = exports.endsWith = exports.startsWith = exports.includes = exports.uppercase = exports.lowercase = exports.regex = exports.length = exports.minLength = exports.maxLength = exports.size = exports.minSize = exports.maxSize = exports.multipleOf = exports.nonnegative = exports.nonpositive = exports.negative = exports.positive = exports.minimum = exports.gte = exports.gt = exports.maximum = exports.lte = exports.lt = void 0;
4
4
  var index_js_1 = require("../core/index.cjs");
5
5
  Object.defineProperty(exports, "lt", { enumerable: true, get: function () { return index_js_1._lt; } });
6
6
  Object.defineProperty(exports, "lte", { enumerable: true, get: function () { return index_js_1._lte; } });
@@ -26,10 +26,28 @@ Object.defineProperty(exports, "includes", { enumerable: true, get: function ()
26
26
  Object.defineProperty(exports, "startsWith", { enumerable: true, get: function () { return index_js_1._startsWith; } });
27
27
  Object.defineProperty(exports, "endsWith", { enumerable: true, get: function () { return index_js_1._endsWith; } });
28
28
  Object.defineProperty(exports, "property", { enumerable: true, get: function () { return index_js_1._property; } });
29
- Object.defineProperty(exports, "properties", { enumerable: true, get: function () { return index_js_1._properties; } });
30
29
  Object.defineProperty(exports, "mime", { enumerable: true, get: function () { return index_js_1._mime; } });
31
30
  Object.defineProperty(exports, "overwrite", { enumerable: true, get: function () { return index_js_1._overwrite; } });
32
31
  Object.defineProperty(exports, "normalize", { enumerable: true, get: function () { return index_js_1._normalize; } });
33
32
  Object.defineProperty(exports, "trim", { enumerable: true, get: function () { return index_js_1._trim; } });
34
33
  Object.defineProperty(exports, "toLowerCase", { enumerable: true, get: function () { return index_js_1._toLowerCase; } });
35
34
  Object.defineProperty(exports, "toUpperCase", { enumerable: true, get: function () { return index_js_1._toUpperCase; } });
35
+
36
+ // seal-cjs-exports
37
+ (function () {
38
+ var keys = Object.getOwnPropertyNames(exports);
39
+ for (var i = 0; i < keys.length; i++) {
40
+ var desc = Object.getOwnPropertyDescriptor(exports, keys[i]);
41
+ if (!desc || !desc.get || !desc.configurable) continue;
42
+ var value;
43
+ try {
44
+ value = desc.get();
45
+ } catch (e) {
46
+ continue;
47
+ }
48
+ // a circular require may not have settled this one yet, so leave it live
49
+ if (value === undefined) continue;
50
+ Object.defineProperty(exports, keys[i], { value: value, writable: false, enumerable: desc.enumerable, configurable: false });
51
+ }
52
+ Object.freeze(exports);
53
+ })();
@@ -1 +1 @@
1
- export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _properties as properties, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.cjs";
1
+ export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.cjs";
@@ -1 +1 @@
1
- export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _properties as properties, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.js";
1
+ export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.js";
package/v4/mini/checks.js CHANGED
@@ -1 +1 @@
1
- export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _properties as properties, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.js";
1
+ export { _lt as lt, _lte as lte, _lte as maximum, _gt as gt, _gte as gte, _gte as minimum, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.js";
@@ -50,3 +50,22 @@ function bigint(params) {
50
50
  function date(params) {
51
51
  return core._coercedDate(schemas.ZodMiniDate, params);
52
52
  }
53
+
54
+ // seal-cjs-exports
55
+ (function () {
56
+ var keys = Object.getOwnPropertyNames(exports);
57
+ for (var i = 0; i < keys.length; i++) {
58
+ var desc = Object.getOwnPropertyDescriptor(exports, keys[i]);
59
+ if (!desc || !desc.get || !desc.configurable) continue;
60
+ var value;
61
+ try {
62
+ value = desc.get();
63
+ } catch (e) {
64
+ continue;
65
+ }
66
+ // a circular require may not have settled this one yet, so leave it live
67
+ if (value === undefined) continue;
68
+ Object.defineProperty(exports, keys[i], { value: value, writable: false, enumerable: desc.enumerable, configurable: false });
69
+ }
70
+ Object.freeze(exports);
71
+ })();
@@ -37,3 +37,22 @@ function deepPartial(schema) {
37
37
  },
38
38
  });
39
39
  }
40
+
41
+ // seal-cjs-exports
42
+ (function () {
43
+ var keys = Object.getOwnPropertyNames(exports);
44
+ for (var i = 0; i < keys.length; i++) {
45
+ var desc = Object.getOwnPropertyDescriptor(exports, keys[i]);
46
+ if (!desc || !desc.get || !desc.configurable) continue;
47
+ var value;
48
+ try {
49
+ value = desc.get();
50
+ } catch (e) {
51
+ continue;
52
+ }
53
+ // a circular require may not have settled this one yet, so leave it live
54
+ if (value === undefined) continue;
55
+ Object.defineProperty(exports, keys[i], { value: value, writable: false, enumerable: desc.enumerable, configurable: false });
56
+ }
57
+ Object.freeze(exports);
58
+ })();