* Return `true` if the very first character is the opening bracket, and if the rest of the `valueString` also has the closing bracket. * * @param {string} valueString * @param {string} leftBracket * @param {string} rightBracket * @returns {boolean}
(valueString, leftBracket, rightBracket)
| 542 | * @returns {boolean} |
| 543 | */ |
| 544 | static isNegativeWithBrackets(valueString, leftBracket, rightBracket) { |
| 545 | return valueString.charAt(0) === leftBracket && this.contains(valueString, rightBracket); |
| 546 | } |
| 547 | |
| 548 | /** |
| 549 | * Return `true` if the formatted or unformatted numeric string represent the value 0 (ie. '0,00 €'), or is empty (' €'). |
no test coverage detected