PerformanceResourceTiming.toJSON()
The toJSON()
method is a serializer that returns a JSON representation of the PerformanceResourceTiming
object.
Syntax
json = resourcePerfEntry.toJSON();
Arguments
None
Return value
- json
-
A JSON object that is the serialization of the
PerformanceResourceTiming
object as a map with entries from the closest inherited interface and with entries for each of the serializable attributes.
Example
// Get a resource performance entry var perfEntries = performance.getEntriesByType("resource"); var entry = perfEntries[0]; // Get the JSON and log it var json = entry.toJSON(); var s = JSON.stringify(json); console.log("PerformanceEntry.toJSON = " + s);
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
toJSON |
43 |
≤18 |
40 |
No |
30 |
11 |
43 |
43 |
42 |
30 |
11 |
4.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/toJSON