Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/simple_utility/mod.ts>deepClone

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

structuredClone() with argument type added to return value.

Examples

Example 1

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