mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
22 lines
848 B
JavaScript
22 lines
848 B
JavaScript
// we use the number only implementation in order to not pull in
|
|
// the `Unit` class for example. when using as library,
|
|
// use require('mathjs/number')
|
|
import { create, evaluateDependencies } from '../../lib/esm/number.js'
|
|
|
|
// custom implementations of all functions you want to support
|
|
const add = (a, b) => a + b
|
|
const subtract = (a, b) => a - b
|
|
const multiply = (a, b) => a * b
|
|
const divide = (a, b) => a / b
|
|
|
|
// create a mathjs instance with hardly any functions
|
|
// there are some functions created which are used internally by evaluate though,
|
|
// for example by the Unit class which has dependencies on addScalar, subtractScalar,
|
|
// multiplyScalar, etc.
|
|
const math = create(evaluateDependencies)
|
|
|
|
// import your own functions
|
|
math.import({ add, subtract, multiply, divide }, { override: true })
|
|
|
|
console.log(math.evaluate('2 + 3 * 4')) // 14
|