Files
opencode-krates-connector/client/node_modules/lib0/json.js
Hermes Agent 6bc05a76b0 fix: Resolve TypeScript errors
Signed-off-by: Hermes Agent <hermes@nosuchhost>
2026-06-16 09:01:21 -04:00

22 lines
296 B
JavaScript

/**
* JSON utility functions.
*
* @module json
*/
/**
* Transform JavaScript object to JSON.
*
* @param {any} object
* @return {string}
*/
export const stringify = JSON.stringify
/**
* Parse JSON object.
*
* @param {string} json
* @return {any}
*/
export const parse = JSON.parse