UNPKG

celerichain-ember-cor

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

10 lines (9 loc) 194 B
export default function isJson(str) { if (typeof str !== 'string') return false; try { JSON.parse(str); } catch (e) { return false; } return true; }