Frontend/25_01_07/mai/node_modules/get-proto
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00
..
.github asd 2025-01-28 11:38:27 +01:00
test asd 2025-01-28 11:38:27 +01:00
.eslintrc asd 2025-01-28 11:38:27 +01:00
.nycrc asd 2025-01-28 11:38:27 +01:00
CHANGELOG.md asd 2025-01-28 11:38:27 +01:00
index.d.ts asd 2025-01-28 11:38:27 +01:00
index.js asd 2025-01-28 11:38:27 +01:00
LICENSE asd 2025-01-28 11:38:27 +01:00
Object.getPrototypeOf.d.ts asd 2025-01-28 11:38:27 +01:00
Object.getPrototypeOf.js asd 2025-01-28 11:38:27 +01:00
package.json asd 2025-01-28 11:38:27 +01:00
README.md asd 2025-01-28 11:38:27 +01:00
Reflect.getPrototypeOf.d.ts asd 2025-01-28 11:38:27 +01:00
Reflect.getPrototypeOf.js asd 2025-01-28 11:38:27 +01:00
tsconfig.json asd 2025-01-28 11:38:27 +01:00

get-proto Version Badge

github actions coverage License Downloads

npm badge

Robustly get the Prototype of an object. Uses the best available method.

Getting started

npm install --save get-proto

Usage/Examples

const assert = require('assert');
const getProto = require('get-proto');

const a = { a: 1, b: 2, [Symbol.toStringTag]: 'foo' };
const b = { c: 3, __proto__: a };

assert.equal(getProto(b), a);
assert.equal(getProto(a), Object.prototype);
assert.equal(getProto({ __proto__: null }), null);

Tests

Clone the repo, npm install, and run npm test