stupa-pdf-api/frontend/node_modules/own-keys
2025-09-01 01:50:35 +02:00
..
.github Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
test Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
.eslintrc Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
.nycrc Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
CHANGELOG.md Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
index.d.ts Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
index.js Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
LICENSE Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
package.json Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
README.md Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
tsconfig.json Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00

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