```
// This file is generated automatically by `scripts/build/indices.js`.
export { default as add } from './add/index'
...
export { default as toDate } from './toDate/index'
export * from './constants/index'
```
My first time writing an npm package/JS library
What will it expose?
~~Need setters on these to do bounds checks and overflows~~
`strict`
~~When on, creating an LSD with out-of-bounds numbers (pence over 12, shillings over 20) will raise an error~~
When off, it will do its best to make sense in a "pile of coins" way
```
// This file is generated automatically by `scripts/build/indices.js`.
export { default as add } from './add/index'
...
export { default as toDate } from './toDate/index'
export * from './constants/index'
```
My first time writing an npm package/JS library
What will it expose?
~~Need setters on these to do bounds checks and overflows~~
`strict`
~~When on, creating an LSD with out-of-bounds numbers (pence over 12, shillings over 20) will raise an error~~
When off, it will do its best to make sense in a "pile of coins" way