@beyondessential/arithmetic
Version:
Utility to evaluate BODMAS arithmetic formulas
20 lines (17 loc) • 425 B
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true,
});
Object.defineProperty(exports, 'runArithmetic', {
enumerable: true,
get: function get() {
return _arithmetic.runArithmetic;
},
});
Object.defineProperty(exports, 'getVariables', {
enumerable: true,
get: function get() {
return _symbols.getVariables;
},
});
var _arithmetic = require('./arithmetic');
var _symbols = require('./symbols');