pocomath/pocomath.mjs

9 lines
239 B
JavaScript

/* Core of pocomath: generates the default instance */
import PocomathInstance from './PocomathInstance.mjs'
import * as numbers from './number/all.mjs'
const math = new PocomathInstance('math')
math.install(numbers)
export default math