UNPKG

cky-image-public

Version:

public image to public host

10 lines 160 B
module.exports = { safeParse: (str) => { if (typeof str == 'object') return str; try { return JSON.parse(str); } catch (ex) { return null; } } }