mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
14 lines (13 loc) • 516 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.smallerDocs = void 0;
var smallerDocs = exports.smallerDocs = {
name: 'smaller',
category: 'Relational',
syntax: ['x < y', 'smaller(x, y)'],
description: 'Check if value x is smaller than value y. Returns true if x is smaller than y, and false if not.',
examples: ['2 < 3', '5 < 2*2', 'a = 3.3', 'b = 6-2.8', '(a < b)', '5 cm < 2 inch'],
seealso: ['equal', 'unequal', 'larger', 'smallerEq', 'largerEq', 'compare']
};
;