Function/node_modules/gopd
Unknown 46deb1c0ef a
2024-06-04 17:46:01 -07:00
..
.github a 2024-06-04 17:46:01 -07:00
test a 2024-06-04 17:46:01 -07:00
.eslintrc a 2024-06-04 17:46:01 -07:00
CHANGELOG.md a 2024-06-04 17:46:01 -07:00
index.js a 2024-06-04 17:46:01 -07:00
LICENSE a 2024-06-04 17:46:01 -07:00
package.json a 2024-06-04 17:46:01 -07:00
README.md a 2024-06-04 17:46:01 -07: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');
}