UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 159 B
export function toJsonObject(text) { if (!text) { return undefined; } try { return JSON.parse(text); } catch (ignored) {} return undefined; }