fix dv::is_numeric

This commit is contained in:
MihailRis 2024-10-18 11:02:48 +03:00
parent 4844997c6a
commit fc9f2574cd

View File

@ -511,7 +511,7 @@ namespace dv {
}; };
inline bool is_numeric(const value& val) { inline bool is_numeric(const value& val) {
return val.isInteger() && val.isNumber(); return val.isInteger() || val.isNumber();
} }
} }