Skip to content

unicorn/prefer-structured-clone Style

🚧 An auto-fix is still under development.

What it does

Prefer using structuredClone to create a deep clone.

Why is this bad?

structuredClone is the modern way to create a deep clone of a value.

Examples

Examples of incorrect code for this rule:

js
const clone = JSON.parse(JSON.stringify(foo));

const clone = _.cloneDeep(foo);

Examples of correct code for this rule:

js
const clone = structuredClone(foo);

References

Released under the MIT License.