UNPKG

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) 593 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.equalTextDocs = void 0; var equalTextDocs = exports.equalTextDocs = { name: 'equalText', category: 'Relational', syntax: ['equalText(x, y)'], description: 'Check equality of two strings. Comparison is case sensitive. Returns true if the values are equal, and false if not.', examples: ['equalText("Hello", "Hello")', 'equalText("a", "A")', 'equal("2e3", "2000")', 'equalText("2e3", "2000")', 'equalText("B", ["A", "B", "C"])'], seealso: ['compare', 'compareNatural', 'compareText', 'equal'] };