own-keys

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

MIT 2 个版本
安装
npm install own-keys
yarn add own-keys
pnpm add own-keys
bun add own-keys
README

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

版本列表
1.0.1 2024-12-29
1.0.0 2024-12-29