AJNB 376d9cfaf8 hjj il y a 2 mois
..
.github 376d9cfaf8 hjj il y a 2 mois
test 376d9cfaf8 hjj il y a 2 mois
.eslintrc 376d9cfaf8 hjj il y a 2 mois
CHANGELOG.md 376d9cfaf8 hjj il y a 2 mois
LICENSE 376d9cfaf8 hjj il y a 2 mois
README.md 376d9cfaf8 hjj il y a 2 mois
index.js 376d9cfaf8 hjj il y a 2 mois
package.json 376d9cfaf8 hjj il y a 2 mois

README.md

gopd Version Badge

github actions coverage License Downloads

npm badge

Object.getOwnPropertyDescriptor, but accounts for IE's broken implementation.

Usage

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');
}