UNPKG

296 BJavaScriptView Raw
1/**
2 * JSON utility functions.
3 *
4 * @module json
5 */
6
7/**
8 * Transform JavaScript object to JSON.
9 *
10 * @param {any} object
11 * @return {string}
12 */
13export const stringify = JSON.stringify
14
15/**
16 * Parse JSON object.
17 *
18 * @param {string} json
19 * @return {any}
20 */
21export const parse = JSON.parse