Gogs df670eaa27 first commit 3 tygodni temu
..
.github df670eaa27 first commit 3 tygodni temu
test df670eaa27 first commit 3 tygodni temu
.eslintrc df670eaa27 first commit 3 tygodni temu
CHANGELOG.md df670eaa27 first commit 3 tygodni temu
LICENSE df670eaa27 first commit 3 tygodni temu
README.md df670eaa27 first commit 3 tygodni temu
gOPD.d.ts df670eaa27 first commit 3 tygodni temu
gOPD.js df670eaa27 first commit 3 tygodni temu
index.d.ts df670eaa27 first commit 3 tygodni temu
index.js df670eaa27 first commit 3 tygodni temu
package.json df670eaa27 first commit 3 tygodni temu
tsconfig.json df670eaa27 first commit 3 tygodni temu

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