PIbd-21_Yaruskin_S.A_IP/лаб2/node_modules/gopd
2024-01-06 02:30:45 +04:00
..
.github all commit 2024-01-06 02:30:45 +04:00
test all commit 2024-01-06 02:30:45 +04:00
.eslintrc all commit 2024-01-06 02:30:45 +04:00
CHANGELOG.md all commit 2024-01-06 02:30:45 +04:00
index.js all commit 2024-01-06 02:30:45 +04:00
LICENSE all commit 2024-01-06 02:30:45 +04:00
package.json all commit 2024-01-06 02:30:45 +04:00
README.md all commit 2024-01-06 02:30:45 +04: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');
}