10 lines
158 B

exports = function(val) {
try {
JSON.parse(val);
return true;
} catch (e) {
return false;
}
};
module.exports = exports;