城南花开 ea29471bc6 cc 10 hónapja
..
.github ea29471bc6 cc 10 hónapja
test ea29471bc6 cc 10 hónapja
.eslintrc ea29471bc6 cc 10 hónapja
CHANGELOG.md ea29471bc6 cc 10 hónapja
LICENSE ea29471bc6 cc 10 hónapja
README.md ea29471bc6 cc 10 hónapja
gOPD.d.ts ea29471bc6 cc 10 hónapja
gOPD.js ea29471bc6 cc 10 hónapja
index.d.ts ea29471bc6 cc 10 hónapja
index.js ea29471bc6 cc 10 hónapja
package.json ea29471bc6 cc 10 hónapja
tsconfig.json ea29471bc6 cc 10 hónapja

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