UNPKG

437 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.hypotDocs = void 0;
7var hypotDocs = {
8 name: 'hypot',
9 category: 'Arithmetic',
10 syntax: ['hypot(a, b, c, ...)', 'hypot([a, b, c, ...])'],
11 description: 'Calculate the hypotenusa of a list with values. ',
12 examples: ['hypot(3, 4)', 'sqrt(3^2 + 4^2)', 'hypot(-2)', 'hypot([3, 4, 5])'],
13 seealso: ['abs', 'norm']
14};
15exports.hypotDocs = hypotDocs;
\No newline at end of file