1. deep-freeze-es6
deep freeze, works with Map and Set
deep-freeze-es6
Package: deep-freeze-es6
Created by: christophehurpeau
Last modified: Sat, 29 Jul 2023 06:49:50 GMT
Version: 3.0.2
License: ISC
Downloads: 25,837
Repository: https://github.com/christophehurpeau/deep-freeze-es6

Install

npm install deep-freeze-es6
yarn add deep-freeze-es6

deep-freeze-es6

deep freeze, works with Map and Set

Quick example

 import { deepFreeze } from 'deep-freeze-es6';

const obj = deepFreeze({
  map: new Map([
    [1, 1],
    [2, 2],
  ]),
});
obj.map.clear(); // Error: map is read-only

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin