Skip to content

Instantly share code, notes, and snippets.

@rndme
Created February 24, 2016 09:20
Show Gist options
  • Save rndme/3ba059c5afd724224efa to your computer and use it in GitHub Desktop.
Save rndme/3ba059c5afd724224efa to your computer and use it in GitHub Desktop.
function freeze(ob) {
for(var k in ob) {
if(!freeze.hasOwnProperty.call(ob, k)) continue;
if(typeof ob[k] === "object" && ob[k]) freeze(v);
}
return Object.freeze(ob);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment