Commit 95f71751 authored by Alexander.Trofimov's avatar Alexander.Trofimov

🐛 fix bug 33602

parent 4e508095
......@@ -5315,6 +5315,10 @@ function parseNum( str ) {
function matching(x, y, operator) {
var res = false, rS;
if (cElementType.string === y.type) {
if ('<' === operator || '>' === operator || '<=' === operator || '>=' === operator) {
return _func[x.type][y.type](x, y, operator).toBool();
}
y = y.toString();
if ('' === y) {
// Empty compare string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment