UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

10 lines (9 loc) 206 B
/** * Mimics the JSON global object with stringify and parse methods. * * Used across the codebase via dependency injection. */ export class Json { stringify = JSON.stringify; parse = JSON.parse; }