UNPKG

bape

Version:
15 lines (14 loc) 264 B
/** * Determine whether input is a correct JSON string or not * * @param {*} value */ export default function isJSON (input) { if (typeof input === 'object') return false try { JSON.parse(input) } catch (err) { return false } return true }