Skip to content

Instantly share code, notes, and snippets.

@extrimua
Last active September 1, 2021 14:30
Show Gist options
  • Save extrimua/71a8b46e5da2b3e4f8814caf4a86f00a to your computer and use it in GitHub Desktop.
Save extrimua/71a8b46e5da2b3e4f8814caf4a86f00a to your computer and use it in GitHub Desktop.
deepFreeze
const deepFreeze = obj => {
Object.keys(obj).forEach(prop => {
if (typeof obj[prop] === 'object') deepFreeze(obj[prop]);
});
return Object.freeze(obj);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment