1.0.4 • Published 8 years ago

descriptors v1.0.4

Weekly downloads
7
License
ISC
Repository
github
Last release
8 years ago

descriptors

Like Object.getOwnPropertyDescriptor, but goes along the prototype chain and gets the descriptors for all properties.

Build Status js-standard-style npm version Coverage Status

-- Usage

const descriptors = require('descriptors')
descriptors({ a: 'a', b: 'b' })
/*
  {
    a: {
      value: 'a',
      writable: true,
      enumerable: true,
      configurable: true
    },
    b: {
      value: 'a',
      writable: true,
      enumerable: true,
      configurable: true
    }
  }
*/