htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
..
.github 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
test 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
.eslintrc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
.nycrc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
CHANGELOG.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
index.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago
tsconfig.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 months ago

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