You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(csv-parse): set columns type as readonly (#358)
The goal is for stringify to support values declared `as const`.
eg.
```
const columns = ['name', 'age'] as const
stringify({columns})
```
As this array has no reasons to be mutated by `stringify` it's simpler to set it as `readonly`.
0 commit comments