UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

12 lines (11 loc) 482 B
/** * This method will return a hash or a text representation of a Symbol, Matrix, or Vector. * If all else fails it *assumes* the object has a toString method and will call that. * * @param {Object} obj * @param {string | undefined} option get is as a hash * @param {int | undefined} useGroup * @param {int | undefined} decp * @returns {String} */ export function text(obj: Object, option?: string | undefined, useGroup?: any | undefined, decp?: any | undefined): string;