UNPKG

tuuljs

Version:

Vanilla Js Generic Use Utility Tuul ₺.js

13 lines (11 loc) 183 B
const isValidJSON = str => { try { JSON.parse(str); return true; } catch (e) { return e; } }; module.exports = { isValidJSON };