UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

8 lines (7 loc) 218 B
/** * Gets called when the parser finds the - operator. Not the prefix operator. See this.add * @param {Symbol} a * @param {Symbol} b * @returns {Symbol} */ export function subtract(a: Symbol, b: Symbol): Symbol;