@mantine/form
Version:
Mantine form management library
21 lines (18 loc) • 376 B
JavaScript
'use client';
;
function isJSONString(error) {
const _error = error || true;
return (value) => {
if (typeof value === "string") {
try {
JSON.parse(value);
return null;
} catch (e) {
return _error;
}
}
return _error;
};
}
exports.isJSONString = isJSONString;
//# sourceMappingURL=is-json-string.cjs.map