Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
function deepClone
import { deepClone } from "https://deno.land/x/simple_utility@v1.6.0/mod.universal.ts";

structuredClone() with argument type added to return value.

Examples

Example 1

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