# object.getownpropertydescriptors

> ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.

Latest version **2.1.9** (published 2025-12-10) · MIT license · 0 weekly downloads

> **Native alternative:** Object.getOwnPropertyDescriptors — Use native JavaScript (Node 7.0.0+) (https://developer.mozilla.orgGlobal_Objects/Object/getOwnPropertyDescriptors)

## Install

```sh
npm install object.getownpropertydescriptors
pnpm add object.getownpropertydescriptors
yarn add object.getownpropertydescriptors
bun add object.getownpropertydescriptors
```

## Health

**Score 53/100 (C)** — status: stable.

Positive: has types package; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 2.1.9 |
| Published | 2025-12-10 |
| First published | 2015-02-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/object.getownpropertydescriptors) |
| Module format | CommonJS |
| Node | >= 0.4 |
| Dependencies | 7 |
| Unpacked size | 24 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 20 |
| Author | Jordan Harband |
| Maintainers | ljharb |
| Keywords | Object.getOwnPropertyDescriptors, descriptor, property descriptor, ES8, ES2017, shim, polyfill, getOwnPropertyDescriptor, es-shim API |

## Links

- npm: https://www.npmjs.com/package/object.getownpropertydescriptors
- Repository: https://github.com/es-shims/object.getownpropertydescriptors
- Homepage: https://github.com/es-shims/object.getownpropertydescriptors#readme
- Issues: https://github.com/es-shims/object.getownpropertydescriptors/issues
- Funding: https://github.com/sponsors/ljharb
- npm.io page: https://npm.io/package/object.getownpropertydescriptors

## Dependencies (7)

- [gopd](https://npm.io/package/gopd.md) ^1.2.0
- [call-bind](https://npm.io/package/call-bind.md) ^1.0.8
- [es-abstract](https://npm.io/package/es-abstract.md) ^1.24.0
- [es-object-atoms](https://npm.io/package/es-object-atoms.md) ^1.1.1
- [define-properties](https://npm.io/package/define-properties.md) ^1.2.1
- [safe-array-concat](https://npm.io/package/safe-array-concat.md) ^1.1.3
- [array.prototype.reduce](https://npm.io/package/array.prototype.reduce.md) ^1.0.8

## Recent versions

- 2.1.9 (latest) — 2025-12-10
- 2.1.8 — 2024-03-20
- 2.1.7 — 2023-09-01
- 2.1.6 — 2023-04-20
- 2.1.5 — 2022-11-07
- 2.1.4 — 2022-05-20
- 2.1.3 — 2021-10-04
- 2.1.2 — 2021-02-20
- 2.1.1 — 2020-11-27
- 2.1.0 — 2019-12-13
- 2.0.3 — 2016-07-26
- 2.0.2 — 2016-02-04
- 2.0.1 — 2016-01-28
- 2.0.0 — 2016-01-28
- 1.0.4 — 2015-07-21
- … 4 more at https://npm.io/package/object.getownpropertydescriptors/versions

## README

# object.getownpropertydescriptors <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

[![npm badge][npm-badge-png]][package-url]

An ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.
Invoke its "shim" method to shim `Object.getOwnPropertyDescriptors` if it is unavailable, and if `Object.getOwnPropertyDescriptor` is available.

This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://github.com/tc39/ecma262/pull/582).

## Example

```js
var getDescriptors = require('object.getownpropertydescriptors');
var assert = require('assert');
var obj = { normal: Infinity };
var enumDescriptor = {
	enumerable: false,
	writable: false,
	configurable: true,
	value: true
};
var writableDescriptor = {
	enumerable: true,
	writable: true,
	configurable: true,
	value: 42
};
var symbol = Symbol();
var symDescriptor = {
	enumerable: true,
	writable: true,
	configurable: false,
	value: [symbol]
};

Object.defineProperty(obj, 'enumerable', enumDescriptor);
Object.defineProperty(obj, 'writable', writableDescriptor);
Object.defineProperty(obj, 'symbol', symDescriptor);

var descriptors = getDescriptors(obj);

assert.deepEqual(descriptors, {
	normal: {
		enumerable: true,
		writable: true,
		configurable: true,
		value: Infinity
	},
	enumerable: enumDescriptor,
	writable: writableDescriptor,
	symbol: symDescriptor
});
```

```js
var getDescriptors = require('object.getownpropertydescriptors');
var assert = require('assert');
/* when Object.getOwnPropertyDescriptors is not present */
delete Object.getOwnPropertyDescriptors;
var shimmedDescriptors = getDescriptors.shim();
assert.equal(shimmedDescriptors, getDescriptors);
assert.deepEqual(shimmedDescriptors(obj), getDescriptors(obj));
```

```js
var getDescriptors = require('object.getownpropertydescriptors');
var assert = require('assert');
/* when Object.getOwnPropertyDescriptors is present */
var shimmedDescriptors = getDescriptors.shim();
assert.notEqual(shimmedDescriptors, getDescriptors);
assert.deepEqual(shimmedDescriptors(obj), getDescriptors(obj));
```

## Tests
Simply clone the repo, `npm install`, and run `npm test`

[package-url]: https://npmjs.org/package/object.getownpropertydescriptors
[npm-version-svg]: http://versionbadg.es/es-shims/Object.getOwnPropertyDescriptors.svg
[travis-svg]: https://travis-ci.org/es-shims/Object.getOwnPropertyDescriptors.svg
[travis-url]: https://travis-ci.org/es-shims/Object.getOwnPropertyDescriptors
[deps-svg]: https://david-dm.org/es-shims/Object.getOwnPropertyDescriptors.svg
[deps-url]: https://david-dm.org/es-shims/Object.getOwnPropertyDescriptors
[dev-deps-svg]: https://david-dm.org/es-shims/Object.getOwnPropertyDescriptors/dev-status.svg
[dev-deps-url]: https://david-dm.org/es-shims/Object.getOwnPropertyDescriptors#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/object.getownpropertydescriptors.png?downloads=true&stars=true
[license-image]: http://img.shields.io/npm/l/object.getownpropertydescriptors.svg
[license-url]: LICENSE
[downloads-image]: http://img.shields.io/npm/dm/object.getownpropertydescriptors.svg
[downloads-url]: http://npm-stat.com/charts.html?package=object.getownpropertydescriptors
[codecov-image]: https://codecov.io/gh/es-shims/Object.getOwnPropertyDescriptors/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/es-shims/Object.getOwnPropertyDescriptors/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Object.getOwnPropertyDescriptors
[actions-url]: https://github.com/es-shims/Object.getOwnPropertyDescriptors/actions

---
_Source: https://npm.io/package/object.getownpropertydescriptors · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
