Gogs df670eaa27 first commit před 3 týdny
..
.github df670eaa27 first commit před 3 týdny
test df670eaa27 first commit před 3 týdny
.eslintrc df670eaa27 first commit před 3 týdny
CHANGELOG.md df670eaa27 first commit před 3 týdny
LICENSE df670eaa27 first commit před 3 týdny
README.md df670eaa27 first commit před 3 týdny
gOPD.d.ts df670eaa27 first commit před 3 týdny
gOPD.js df670eaa27 first commit před 3 týdny
index.d.ts df670eaa27 first commit před 3 týdny
index.js df670eaa27 first commit před 3 týdny
package.json df670eaa27 first commit před 3 týdny
tsconfig.json df670eaa27 first commit před 3 týdny

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