|
vor 3 Wochen | |
---|---|---|
.. | ||
.github | vor 3 Wochen | |
test | vor 3 Wochen | |
.eslintrc | vor 3 Wochen | |
.nycrc | vor 3 Wochen | |
CHANGELOG.md | vor 3 Wochen | |
LICENSE | vor 3 Wochen | |
README.md | vor 3 Wochen | |
index.d.ts | vor 3 Wochen | |
index.js | vor 3 Wochen | |
package.json | vor 3 Wochen | |
tsconfig.json | vor 3 Wochen |
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