agibalov d1106a4bc7 1 vor 1 Woche
..
.github d1106a4bc7 1 vor 1 Woche
test d1106a4bc7 1 vor 1 Woche
.eslintrc d1106a4bc7 1 vor 1 Woche
CHANGELOG.md d1106a4bc7 1 vor 1 Woche
LICENSE d1106a4bc7 1 vor 1 Woche
README.md d1106a4bc7 1 vor 1 Woche
gOPD.d.ts d1106a4bc7 1 vor 1 Woche
gOPD.js d1106a4bc7 1 vor 1 Woche
index.d.ts d1106a4bc7 1 vor 1 Woche
index.js d1106a4bc7 1 vor 1 Woche
package.json d1106a4bc7 1 vor 1 Woche
tsconfig.json d1106a4bc7 1 vor 1 Woche

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