Repository URL to install this package:
|
Version:
1.0.0 ▾
|
| .. |
| test |
| .github |
| .eslintrc |
| LICENSE |
| index.js |
| package.json |
| CHANGELOG.md |
| README.md |
Object.getOwnPropertyDescriptor, but accounts for IE's broken implementation.
var gOPD = require('gopd'); var assert = require('assert'); if (gOPD) { assert.equal(typeof gOPD, 'function', 'descriptors supported'); // use gOPD like Object.getOwnPropertyDescriptor here } else { assert.ok(!gOPD, 'descriptors not supported'); }