sqrt.js (435B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.sqrtDocs = void 0; 7 var 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 }; 15 exports.sqrtDocs = sqrtDocs;