This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2022.
Note: This feature is only available in Web Workers.
The structuredClone() method of the WorkerGlobalScope interface creates a deep copy of a given value using the structured clone algorithm.
The method also allows transferable objects in the original value to be transferred rather than cloned to the new object. Transferred objects are detached from the original object and attached to the new object; they are no longer accessible in the original object.
structuredClone(value) structuredClone(value, options)
valueThe object to be cloned. This can be any structured-cloneable type.
options OptionalAn object with the following properties:
transferAn array of transferable objects that will be moved rather than cloned to the returned object.
A deep copy of the original value.
DataCloneError DOMException
Thrown if any part of the input value is not serializable.
See Window.structuredClone() for details of this function.
See Window.structuredClone() for examples.
| Specification |
|---|
| HTML> # dom-structuredclone> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
structuredClone |
98 | 98 | 94 | 84 | 15.4 | 98 | 94 | 68 | 15.4 | 18.0 | 98 | 15.4 |
structuredClone is available in core-js
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/structuredClone