sign.js 404 B

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