Skip to content

Instantly share code, notes, and snippets.

@pheew
Last active May 20, 2020 09:05
Show Gist options
  • Save pheew/3bebfa5d51a49860cf9db582b87a03f9 to your computer and use it in GitHub Desktop.
Save pheew/3bebfa5d51a49860cf9db582b87a03f9 to your computer and use it in GitHub Desktop.
Object.defineProperty(Error.prototype, 'toJSON', {
value: function () {
var alt = {};
Object.getOwnPropertyNames(this).forEach(function (key) {
alt[key] = this[key];
}, this);
return alt;
},
configurable: true,
writable: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment