仲裁视频会议H5
wangqiong 37a88df277 视频会议 2 gadus atpakaļ
..
.github 视频会议 2 gadus atpakaļ
test 视频会议 2 gadus atpakaļ
.eslintrc 视频会议 2 gadus atpakaļ
CHANGELOG.md 视频会议 2 gadus atpakaļ
LICENSE 视频会议 2 gadus atpakaļ
README.md 视频会议 2 gadus atpakaļ
index.js 视频会议 2 gadus atpakaļ
package.json 视频会议 2 gadus atpakaļ

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