Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/simple_utility/src/deep.ts>deepClone

Useful snippet collection.
Go to Latest
function deepClone
import { deepClone } from "https://deno.land/x/simple_utility@v1.4.4/src/deep.ts";

structuredClone() with argument type added to return value.

Examples

Example 1

const clone = deepClone({
    aaa: {
        bbb: true
    }
});