mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
import typed from 'typed-function'
|
|
|
|
import {
|
|
addNumber,
|
|
multiplyNumber
|
|
} from './plain/number'
|
|
|
|
export const add = typed(addNumber)
|
|
export const multiply = typed(multiplyNumber)
|