1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/node_modules/gopd
2024-08-26 08:46:12 +02:00
..
.github Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
test Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
.eslintrc Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
CHANGELOG.md Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
index.js Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
LICENSE Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
package.json Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +02:00
README.md Update to SVR.JS 3.14.18 2024-08-26 08:46:12 +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');
}