RevelaOS/node_modules/gopd
2023-10-15 23:53:41 +01:00
..
.github [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
test [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
.eslintrc [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
CHANGELOG.md [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
index.js [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
LICENSE [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
package.json [🎉] Initial Commit 2023-10-15 23:53:41 +01:00
README.md [🎉] Initial Commit 2023-10-15 23:53:41 +01: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');
}