[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2023-06-08 14:13 -  
[   ]package.json2023-06-08 14:14 1.5K 
[   ]index.js2016-02-06 01:15 384  
[TXT]README.md2016-02-06 01:10 315 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]LICENSE2016-02-06 00:28 1.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
# 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" ]
```