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