vending-machine/mobile/node_modules/licia/isJson.js
2026-04-03 06:07:13 +08:00

11 lines
158 B
JavaScript

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