own-keys
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i own-keys

Weekly Downloads

7,186,084

Version

1.0.1

License

MIT

Unpacked Size

9.8 kB

Total Files

11

Last publish

Collaborators

  • ljharb