uni-ticket-system/node_modules/licia/isJson.js

11 lines
158 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(val) {
try {
JSON.parse(val);
return true;
} catch (e) {
return false;
}
};
module.exports = exports;