[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2023-06-15 18:19 -  
[   ]LICENSE2016-02-06 00:28 1.1K 
[TXT]README.md2016-02-06 01:10 315 d7c1522 post receive test [كارل مبارك]
[   ]index.js2016-02-06 01:15 384  
[   ]package.json2023-06-15 18:21 1.5K 
# Reflect.ownKeys

Polyfill for ES6's [Reflect.ownKeys](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/ownKeys)

## Installing

```sh
npm install reflect.ownkeys
```

## Example

```js
var ownKeys = require('reflect.ownkeys');
ownKeys({a: 1, b: 2});
// => [ "a", "b" ]
```