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

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