Skip to main content
Go to Latest
function deepSeal
import { deepSeal } from "https://deno.land/x/simple_utility@v2.0.1/mod.pure.full.ts";

Applies Object.seal() recursively.

Examples

Example 1

const seal = deepSeal({
    aaa: {
        bbb: true
    }
});