projet_fil_red_api/node_modules/gopd
2025-07-08 22:47:52 +02:00
..
.github Initial Commit 2025-07-08 22:47:52 +02:00
test Initial Commit 2025-07-08 22:47:52 +02:00
.eslintrc Initial Commit 2025-07-08 22:47:52 +02:00
CHANGELOG.md Initial Commit 2025-07-08 22:47:52 +02:00
gOPD.d.ts Initial Commit 2025-07-08 22:47:52 +02:00
gOPD.js Initial Commit 2025-07-08 22:47:52 +02:00
index.d.ts Initial Commit 2025-07-08 22:47:52 +02:00
index.js Initial Commit 2025-07-08 22:47:52 +02:00
LICENSE Initial Commit 2025-07-08 22:47:52 +02:00
package.json Initial Commit 2025-07-08 22:47:52 +02:00
README.md Initial Commit 2025-07-08 22:47:52 +02:00
tsconfig.json Initial Commit 2025-07-08 22:47:52 +02:00

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