904118851 5ab7cf0644 123 9 miesięcy temu
..
.github 5ab7cf0644 123 9 miesięcy temu
test 5ab7cf0644 123 9 miesięcy temu
.eslintrc 5ab7cf0644 123 9 miesięcy temu
CHANGELOG.md 5ab7cf0644 123 9 miesięcy temu
LICENSE 5ab7cf0644 123 9 miesięcy temu
README.md 5ab7cf0644 123 9 miesięcy temu
index.js 5ab7cf0644 123 9 miesięcy temu
package.json 5ab7cf0644 123 9 miesięcy 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');
}