pocomath/src/number/negate.mjs
Glen Whitney 81ff04f88f feat: Additional notations for specifying dependencies and implementations
Allow just a plain function for when there are no dependencies,
  and allow an object with 'uses' and 'does' properties for the
  dependencies (optional) and implementation, respectively.
2022-07-22 21:48:06 -07:00

3 lines
84 B
JavaScript

export { Types } from './Types/number.mjs'
export const negate = {number: n => -n}