## Why?
npm install @mrvicadai/babel-preset-prettify-bucklescriptThis tool is built so the javascript output from Bucklescript could be more
human-readable.
Ugly syntax such as:
``js`
var task = / record / [/ data / data, / callback / callback];
will be converted to:
`js`
let task = {
data: data,
callback: callback
};
- [x] Convert record creation code to object.
- [x] Remove / () /0 fillerCurry
- [x] Convert record access code to object access code.
- [x] Convert related code into uncurried code.dll.length = (dll.length - 1) | 0;
- [x] Remove castString()
- [ ] Remove constructor.Belt.Option
- [ ] Convert related code to plain undefined.Option.map` API in utils.
- [ ] Create