pocomath/src/pocomath.mjs

13 lines
450 B
JavaScript
Raw Normal View History

/* Core of pocomath: generates the default instance */
import PocomathInstance from './core/PocomathInstance.mjs'
import * as numbers from './number/native.mjs'
import * as bigints from './bigint/native.mjs'
import * as complex from './complex/native.mjs'
import * as generic from './generic/all.mjs'
2022-08-02 07:47:37 +00:00
import * as ops from './ops/all.mjs'
const math = PocomathInstance.merge(
2022-08-02 07:47:37 +00:00
'math', numbers, bigints, complex, generic, ops)
export default math