leaflet / map / web / node_modules / gopd /
@[abemizuki] [abemizuki] authored on 8 Aug
..
.github add 1 month ago
test add 1 month ago
.eslintrc add 1 month ago
CHANGELOG.md add 1 month ago
LICENSE add 1 month ago
README.md add 1 month ago
gOPD.d.ts add 1 month ago
gOPD.js add 1 month ago
index.d.ts add 1 month ago
index.js add 1 month ago
package.json add 1 month ago
tsconfig.json add 1 month ago
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');
}