zheng 8213b23298 webpack il y a 1 jour
..
.github 8213b23298 webpack il y a 1 jour
test 8213b23298 webpack il y a 1 jour
.eslintrc 8213b23298 webpack il y a 1 jour
CHANGELOG.md 8213b23298 webpack il y a 1 jour
LICENSE 8213b23298 webpack il y a 1 jour
README.md 8213b23298 webpack il y a 1 jour
gOPD.d.ts 8213b23298 webpack il y a 1 jour
gOPD.js 8213b23298 webpack il y a 1 jour
index.d.ts 8213b23298 webpack il y a 1 jour
index.js 8213b23298 webpack il y a 1 jour
package.json 8213b23298 webpack il y a 1 jour
tsconfig.json 8213b23298 webpack il y a 1 jour

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