Snow 1d0b9c5323 增加了node环境 1 개월 전
..
.github 1d0b9c5323 增加了node环境 1 개월 전
test 1d0b9c5323 增加了node环境 1 개월 전
.eslintrc 1d0b9c5323 增加了node环境 1 개월 전
CHANGELOG.md 1d0b9c5323 增加了node环境 1 개월 전
LICENSE 1d0b9c5323 增加了node环境 1 개월 전
README.md 1d0b9c5323 增加了node环境 1 개월 전
gOPD.d.ts 1d0b9c5323 增加了node环境 1 개월 전
gOPD.js 1d0b9c5323 增加了node环境 1 개월 전
index.d.ts 1d0b9c5323 增加了node环境 1 개월 전
index.js 1d0b9c5323 增加了node环境 1 개월 전
package.json 1d0b9c5323 增加了node环境 1 개월 전
tsconfig.json 1d0b9c5323 增加了node环境 1 개월 전

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');
}