2022-03-25 07:49:03 +00:00
|
|
|
/* Core of picomath: generates an instance */
|
|
|
|
import picomathInstance from './picomathInstance.js'
|
|
|
|
import createNumbers from './number/all.js'
|
2022-03-25 08:54:20 +00:00
|
|
|
import createComplex from './complex/all.js'
|
2022-03-25 07:49:03 +00:00
|
|
|
|
|
|
|
const math = picomathInstance('math')
|
|
|
|
createNumbers(math)
|
2022-03-25 08:54:20 +00:00
|
|
|
createComplex(math)
|
|
|
|
|
2022-03-25 07:49:03 +00:00
|
|
|
export default math
|