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
20 lines (19 loc) • 512 B
JavaScript
export const 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'
]
}