UNPKG

mime-controller

Version:

Helps you find the file type easily.

8 lines 155 B
export function validateJSON(data) { try { var data = JSON.parse(data); return true; } catch (error) { return false; } }