UNPKG

435 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.sqrtDocs = void 0;
7var sqrtDocs = {
8 name: 'sqrt',
9 category: 'Arithmetic',
10 syntax: ['sqrt(x)'],
11 description: 'Compute the square root value. If x = y * y, then y is the square root of x.',
12 examples: ['sqrt(25)', '5 * 5', 'sqrt(-1)'],
13 seealso: ['square', 'sqrtm', 'multiply', 'nthRoot', 'nthRoots', 'pow']
14};
15exports.sqrtDocs = sqrtDocs;
\No newline at end of file