Files
APP/node_modules/gopd
微微一笑 6257f9d84b 增加mqtt
2025-07-16 11:16:19 +08:00
..
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08:00
2025-07-16 11:16:19 +08:00
2025-07-05 14:49:26 +08:00
2025-07-05 14:49:26 +08: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');
}