mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-10 03:08:06 +01:00
11 lines
No EOL
274 B
TypeScript
11 lines
No EOL
274 B
TypeScript
export const isJSON = (data: any): boolean => {
|
|
if (typeof data !== 'string') return false;
|
|
try {
|
|
const result = JSON.parse(data);
|
|
const type = result.toString();
|
|
|
|
return type === '[object Object]' || type === '[object Array]';
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}; |