abs.js 319 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.absDocs = void 0;
  6. var absDocs = {
  7. name: 'abs',
  8. category: 'Arithmetic',
  9. syntax: ['abs(x)'],
  10. description: 'Compute the absolute value.',
  11. examples: ['abs(3.5)', 'abs(-4.2)'],
  12. seealso: ['sign']
  13. };
  14. exports.absDocs = absDocs;