lhl 2bdf874dbb create 1 bulan lalu
..
.github 2bdf874dbb create 1 bulan lalu
test 2bdf874dbb create 1 bulan lalu
.eslintrc 2bdf874dbb create 1 bulan lalu
.nycrc 2bdf874dbb create 1 bulan lalu
CHANGELOG.md 2bdf874dbb create 1 bulan lalu
LICENSE 2bdf874dbb create 1 bulan lalu
README.md 2bdf874dbb create 1 bulan lalu
index.d.ts 2bdf874dbb create 1 bulan lalu
index.js 2bdf874dbb create 1 bulan lalu
package.json 2bdf874dbb create 1 bulan lalu
tsconfig.json 2bdf874dbb create 1 bulan lalu

README.md

own-keys Version Badge

github actions coverage License Downloads

npm badge

Robustly get an object's own property keys (strings and symbols), including non-enumerables when possible.

Getting started

npm install --save own-keys

Usage/Examples

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']);

Tests

Simply clone the repo, npm install, and run npm test