deep-freeze
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/deep-freeze package

0.0.1 • Public • Published

deep-freeze

recursively Object.freeze() objects

build status

example

var deepFreeze = require('deep-freeze');
 
deepFreeze(Buffer);
Buffer.x = 5;
console.log(Buffer.x === undefined);
 
Buffer.prototype.z = 3;
console.log(Buffer.prototype.z === undefined);

$ node example/deep.js
true
true

methods

var deepFreeze = require('deep-freeze')

deepFreeze(obj)

Call Object.freeze(obj) recursively on all unfrozen properties of obj that are functions or objects.

license

public domain

Based in part on the code snippet from the MDN wiki page on Object.freeze(), which is released to the public domain.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i deep-freeze

    Weekly Downloads

    967,693

    Version

    0.0.1

    License

    public domain

    Last publish

    Collaborators

    • nopersonsmodules