Skip to content

Instantly share code, notes, and snippets.

@regiskuckaertz
Created July 28, 2017 09:31
Show Gist options
  • Save regiskuckaertz/b8272925b9e2eeea1f9f876bf8c30692 to your computer and use it in GitHub Desktop.
Save regiskuckaertz/b8272925b9e2eeea1f9f876bf8c30692 to your computer and use it in GitHub Desktop.
Object.prototype.copy
Object.defineProperty(
Object.prototype,
'copy',
{ value: function(spec) {
return Object.freeze(Object.assign({}, this, spec));
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment