Skip to content

Instantly share code, notes, and snippets.

@kypflug
Last active April 28, 2016 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kypflug/545b33f32ae154a9aaf253b01cec0b4b to your computer and use it in GitHub Desktop.
Save kypflug/545b33f32ae154a9aaf253b01cec0b4b to your computer and use it in GitHub Desktop.
Object.getOwnPropertyNames(obj).forEach(function (memberName, index, array) {
...
if (!obj.hasOwnProperty(memberName)) { return; } // is inherited
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment