See https://code.studioinfinity.org/glen/nanomath/wiki/Item-Specifications. Also stubs out the TypeDispatcher, mocking the merge function, so we can see that all of the proper things will be added. Ready for initial implementation of the TypeDispatcher.
6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
import {TypeDispatcher} from './core/TypeDispatcher.js'
|
|
import {numbers} from './numbers.js'
|
|
|
|
const math = new TypeDispatcher(numbers)
|
|
|
|
export default math
|