puppeteer/website/versioned_docs/version-19.8.2/api/puppeteer.jshandle.jsonvalue.md

28 lines
427 B
Markdown
Raw Normal View History

---
sidebar_label: JSHandle.jsonValue
---
# JSHandle.jsonValue() method
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class JSHandle {
jsonValue(): Promise<T>;
}
```
**Returns:**
Promise&lt;T&gt;
A vanilla object representing the serializable portions of the referenced object.
## Exceptions
Throws if the object cannot be serialized due to circularity.
## Remarks
If the object has a `toJSON` function, it **will not** be called.