Harry Sarson
Harry Sarson
If I may chime in, there is value in not needing a build script. It looks like we do still use build scripts to convert the files in src to...
Would it be possible to share a small code snippet showing what you are trying to do?
Async functions are not something that mathjs supports. Saying that your example should work - I made a quick example: https://repl.it/repls/GargantuanAcclaimedCoins ```js const mathjs = require('mathjs'); const parser = new...
`Unit` 😮
We could nab the @mathjs namespace on npm for it?
I like the idea of making mathjs into a monorepl with one github repo containing multiple npm packages. Although this approach has downsides too.
That makes a lot of sense 👍
I have some time on my hands from Friday onwards and happy to help piping UnitMath into mathjs
For reference here is the generated javascript: ```js var $author$project$Main$windDown = F2( function (value, continuation) { windDown: while (true) { if (value > 0) { var $temp$value = value -...
The issue is that by the time we get to `(2)`, we have already been to `(1)` and `(2)` and therefore `continuation = function (newValue) { return continuation(newValue); };`. Then...