Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Muqriz 48f16bfc3e initail first il y a 4 mois
..
.github initail first il y a 4 mois
test initail first il y a 4 mois
.eslintrc initail first il y a 4 mois
CHANGELOG.md initail first il y a 4 mois
LICENSE initail first il y a 4 mois
README.md initail first il y a 4 mois
index.js initail first il y a 4 mois
package.json initail first il y a 4 mois

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