nanomath/src/nanomath.js
Glen Whitney 69ef928b6e refactor: Switch to 'map-like object keyed by string and type vector' format
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.
2025-04-02 11:22:53 -07:00

6 lines
156 B
JavaScript

import {TypeDispatcher} from './core/TypeDispatcher.js'
import {numbers} from './numbers.js'
const math = new TypeDispatcher(numbers)
export default math