diff options
Diffstat (limited to 'src/support/string.h')
-rw-r--r-- | src/support/string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/support/string.h b/src/support/string.h index b93d3b363..1708f4d94 100644 --- a/src/support/string.h +++ b/src/support/string.h @@ -115,6 +115,10 @@ inline std::string trim(const std::string& input) { return input.substr(0, size); } +inline bool isNumber(const std::string& str) { + return !str.empty() && std::all_of(str.begin(), str.end(), ::isdigit); +} + } // namespace String } // namespace wasm |