|
hace 1 mes | |
---|---|---|
.. | ||
.github | hace 1 mes | |
test | hace 1 mes | |
.eslintrc | hace 1 mes | |
.nycrc | hace 1 mes | |
CHANGELOG.md | hace 1 mes | |
LICENSE | hace 1 mes | |
README.md | hace 1 mes | |
index.d.ts | hace 1 mes | |
index.js | hace 1 mes | |
package.json | hace 1 mes | |
tsconfig.json | hace 1 mes |
Robustly get an object's own property keys (strings and symbols), including non-enumerables when possible.
npm install --save own-keys
var ownKeys = require('own-keys');
var assert = require('assert');
assert.deepEqual(ownKeys({ a: 1, b: 2 }), ['a', 'b']);
assert.deepEqual(ownKeys([1, 2, 3]), [0, 1, 2, 'length']);
Simply clone the repo, npm install
, and run npm test