UNPKG

devexpress-gantt

Version:

DevExpress Gantt Control

8 lines (6 loc) 209 B
import { JsonUtils } from "@devexpress/utils/lib/utils/json"; export class GanttJsonUtils { static parseJson(json: string): any { return JsonUtils.isValid(json) ? JSON.parse(json) : null; } }