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

x/simple_utility/mod.ts>deepSeal

Simplify processing for Deno.
Latest
function deepSeal
import { deepSeal } from "https://deno.land/x/simple_utility@v2.3.2/mod.ts";

Apply Object.seal() recursive.

Examples

Example 1

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