Files
DiceCloud/app/imports/math.js
2020-05-13 10:42:20 +02:00

10 lines
166 B
JavaScript

import { create, all } from 'mathjs';
const math = create(all);
math.import({
'if': function(pred, a, b) {
return pred ? a : b;
}
});
export default math;