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

Applies Object.seal() recursively.

Examples

Example 1

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