WICG / attribution-reporting-api

Attribution Reporting API
https://wicg.github.io/attribution-reporting-api/
Other
347 stars 161 forks source link

Share struct/field logic for JSON and structured headers #1300

Closed apasel422 closed 1 month ago

apasel422 commented 1 month ago

This allows the structured header validators to parse values into well-typed objects without ad-hoc logic.

validate.ts is effectively a module parameterized over a map type (object for JSON, Map for structured headers) and a value type (the Json type union for JSON, Item | InnerList for structured headers).