smaller.js 529 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.smallerDocs = void 0;
  6. var smallerDocs = {
  7. name: 'smaller',
  8. category: 'Relational',
  9. syntax: ['x < y', 'smaller(x, y)'],
  10. description: 'Check if value x is smaller than value y. Returns true if x is smaller than y, and false if not.',
  11. examples: ['2 < 3', '5 < 2*2', 'a = 3.3', 'b = 6-2.8', '(a < b)', '5 cm < 2 inch'],
  12. seealso: ['equal', 'unequal', 'larger', 'smallerEq', 'largerEq', 'compare']
  13. };
  14. exports.smallerDocs = smallerDocs;