UNPKG

385 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.powDocs = void 0;
7var powDocs = {
8 name: 'pow',
9 category: 'Operators',
10 syntax: ['x ^ y', 'pow(x, y)'],
11 description: 'Calculates the power of x to y, x^y.',
12 examples: ['2^3', '2*2*2', '1 + e ^ (pi * i)'],
13 seealso: ['multiply', 'nthRoot', 'nthRoots', 'sqrt']
14};
15exports.powDocs = powDocs;
\No newline at end of file