auth/node_modules/gopd
Chandresh Kerkar 9dd376df76 Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
..
.github Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
test Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
.eslintrc Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
CHANGELOG.md Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
LICENSE Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
README.md Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
gOPD.d.ts Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
gOPD.js Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
index.d.ts Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
index.js Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
package.json Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
tsconfig.json Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30

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