zyh f2307604ee z пре 8 месеци
..
.github f2307604ee z пре 8 месеци
test f2307604ee z пре 8 месеци
.eslintrc f2307604ee z пре 8 месеци
CHANGELOG.md f2307604ee z пре 8 месеци
LICENSE f2307604ee z пре 8 месеци
README.md f2307604ee z пре 8 месеци
index.js f2307604ee z пре 8 месеци
package.json f2307604ee z пре 8 месеци

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