caoge c760052ff9 机车状态修改 | пре 8 месеци | |
---|---|---|
.. | ||
.github | пре 8 месеци | |
test | пре 8 месеци | |
.eslintrc | пре 8 месеци | |
CHANGELOG.md | пре 8 месеци | |
LICENSE | пре 8 месеци | |
README.md | пре 8 месеци | |
index.js | пре 8 месеци | |
package.json | пре 8 месеци |
Object.getOwnPropertyDescriptor
, but accounts for IE's broken implementation.
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');
}