RocketChat/Rocket.Chat

View on GitHub
apps/meteor/lib/utils/isJSON.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const isJSON = (value: string): boolean => {
    try {
        return !!JSON.parse(value);
    } catch {
        return false;
    }
};