hz-zhhq-web/node_modules/own-keys
zzyuan 0ed9577d7c 前端提交4 2025-02-25 13:46:30 +08:00
..
.github 前端提交4 2025-02-25 13:46:30 +08:00
test 前端提交4 2025-02-25 13:46:30 +08:00
.eslintrc 前端提交4 2025-02-25 13:46:30 +08:00
.nycrc 前端提交4 2025-02-25 13:46:30 +08:00
CHANGELOG.md 前端提交4 2025-02-25 13:46:30 +08:00
LICENSE 前端提交4 2025-02-25 13:46:30 +08:00
README.md 前端提交4 2025-02-25 13:46:30 +08:00
index.d.ts 前端提交4 2025-02-25 13:46:30 +08:00
index.js 前端提交4 2025-02-25 13:46:30 +08:00
package.json 前端提交4 2025-02-25 13:46:30 +08:00
tsconfig.json 前端提交4 2025-02-25 13:46:30 +08:00

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