forked from rcxpony/sparkle
8 lines
226 B
C++
8 lines
226 B
C++
#ifndef UTILS_FUNCTIONS_HPP_
|
|
#define UTILS_FUNCTIONS_HPP_
|
|
struct functions {
|
|
static inline std::string isNull(const nlohmann::json& str) {
|
|
return str.is_null() ? str.dump() : str.get<std::string>();
|
|
}
|
|
};
|
|
#endif |