ship-gis/node_modules/gopd
2026-01-22 09:14:01 +09:00
..
.github 20260122_1 2026-01-22 09:14:01 +09:00
test 20260122_1 2026-01-22 09:14:01 +09:00
.eslintrc 20260122_1 2026-01-22 09:14:01 +09:00
CHANGELOG.md 20260122_1 2026-01-22 09:14:01 +09:00
gOPD.d.ts 20260122_1 2026-01-22 09:14:01 +09:00
gOPD.js 20260122_1 2026-01-22 09:14:01 +09:00
index.d.ts 20260122_1 2026-01-22 09:14:01 +09:00
index.js 20260122_1 2026-01-22 09:14:01 +09:00
LICENSE 20260122_1 2026-01-22 09:14:01 +09:00
package.json 20260122_1 2026-01-22 09:14:01 +09:00
README.md 20260122_1 2026-01-22 09:14:01 +09:00
tsconfig.json 20260122_1 2026-01-22 09:14:01 +09: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');
}