zheng 8213b23298 webpack hace 23 horas
..
.github 8213b23298 webpack hace 23 horas
test 8213b23298 webpack hace 23 horas
.eslintrc 8213b23298 webpack hace 23 horas
CHANGELOG.md 8213b23298 webpack hace 23 horas
LICENSE 8213b23298 webpack hace 23 horas
README.md 8213b23298 webpack hace 23 horas
gOPD.d.ts 8213b23298 webpack hace 23 horas
gOPD.js 8213b23298 webpack hace 23 horas
index.d.ts 8213b23298 webpack hace 23 horas
index.js 8213b23298 webpack hace 23 horas
package.json 8213b23298 webpack hace 23 horas
tsconfig.json 8213b23298 webpack hace 23 horas

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