Ryuiso b1774d2c86 no message преди 1 година
..
.github b1774d2c86 no message преди 1 година
test b1774d2c86 no message преди 1 година
.eslintrc b1774d2c86 no message преди 1 година
CHANGELOG.md b1774d2c86 no message преди 1 година
LICENSE b1774d2c86 no message преди 1 година
README.md b1774d2c86 no message преди 1 година
index.js b1774d2c86 no message преди 1 година
package.json b1774d2c86 no message преди 1 година

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