> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/legacy-osl-originos/prototype-helpers/.jsonparse-2.md).

# object.JsonParse

> ⚠️ **Not a method in the current OSL CLI.** Use the [`json` package](/packages/data/json.md) instead: `json.parse()`.

## Description

When used on an object, returns the object.

## Parameters

`JsonParse` takes no parameters.

## Usage

```javascript
obj @= {a:1,b:2,c:3}
// setup the object

log obj.JsonParse()
// returns {a:1,b:2,c:3}
// returns the object
```
