UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

7 lines 261 B
import { GxBigNumber } from "../types/gxbignumber"; export const pow = (operand1, operand2) => { let num1 = Number(operand1.toString()); let num2 = Number(operand2.toString()); return new GxBigNumber(num1 ** num2); }; //# sourceMappingURL=pow.js.map