fix.js 434 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.fixDocs = void 0;
  6. var fixDocs = {
  7. name: 'fix',
  8. category: 'Arithmetic',
  9. syntax: ['fix(x)'],
  10. description: 'Round a value towards zero. If x is complex, both real and imaginary part are rounded towards zero.',
  11. examples: ['fix(3.2)', 'fix(3.8)', 'fix(-4.2)', 'fix(-4.8)'],
  12. seealso: ['ceil', 'floor', 'round']
  13. };
  14. exports.fixDocs = fixDocs;