mholt / json-to-go

Translates JSON into a Go type in your browser instantly (original)
https://mholt.github.io/json-to-go/
MIT License
4.48k stars 473 forks source link

fix scope of exp #129

Closed grische closed 1 month ago

grische commented 1 month ago

const makes exp only block-scoped. This avoids accidental side-effects of a previously defined exp inside the loop.

mholt commented 1 month ago

Thanks!