UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

11 lines (10 loc) 362 B
/** * * @param {Symbol} num - the number being raised * @param {Symbol} p - the exponent * @param {type} prec - the precision wanted * @param {bool} asbig - true if a bigDecimal is wanted * @returns {Symbol} */ export function nthroot(num: Symbol, p: Symbol, prec: any, asbig: any, ...args: any[]): Symbol; import { Symbol } from "../../../Types/Symbol";