Files
planilla/mcp/node_modules/gopd
josedario87 b5e40cf4ac
All checks were successful
build-and-push / build (push) Successful in 17s
build-and-push / deploy (push) Successful in 19s
se supone que mcp server up
2025-05-02 19:33:50 -06:00
..
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06:00
2025-05-02 19:33:50 -06: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');
}