michangarrito/apps/mcp-server/node_modules/get-proto
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00
..
.github feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
test feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
.eslintrc feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
.nycrc feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
CHANGELOG.md feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
index.d.ts feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
index.js feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
LICENSE feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
Object.getPrototypeOf.d.ts feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
Object.getPrototypeOf.js feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
package.json feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
README.md feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
Reflect.getPrototypeOf.d.ts feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
Reflect.getPrototypeOf.js feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06:00
tsconfig.json feat: Initial commit - michangarrito 2026-01-07 04:41:02 -06: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