numenor
Version:
Customizable, safe evaluator of JavaScript-like expressions.
41 lines (23 loc) • 934 B
Markdown
[](https://badge.fury.io/js/numenor)
Customizable, safe evaluator of JavaScript-like expressions.
_**WARNING:** Still highly experimental, do not use in production!_
Simply add `numenor` as a dependency via Yarn (or NPM):
```
yarn add numenor
```
Then import `ExpressionEvaluator` class in your code:
```
import { ExpressionEvaluator } from 'numenor';
const evaluator = new ExpressionEvaluator();
evaluator.evaluate('2 + 2 / 2'); // -> 3
```
_TODO: WRITE ME_
This project uses [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/raleksandar/numenor/tags).
~~Yes.~~ It will be...
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details