1.2.0 • Published 6 months ago

gopd v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

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

6 months ago

1.1.0

7 months ago

1.0.1

3 years ago

1.0.0

3 years ago