Skip to main content
Module

x/simple_utility/mod.full.ts>deepSeal

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

Apply Object.seal() recursive.

Examples

Example 1

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