1.0.2 • Published 3 years ago
gyve v1.0.2
Gyve
Prototypal delegation made simple.
Installation
Install the package with npm:
npm install gyveInclude it in your project:
const gyve = require("gyve");Documentation
Given two objects, car (delegatee) and bmw (delegator), use gyve to prototype-chain them:
const car = {
start() { ... },
stop() { ... },
wheels: 4
};
const electric = {
charge() { ... }
};
// car <-- electric
const electricCar = gyve(car, electric);Since gyve is a curried function, partial application is possible:
const car = { ... };
const delegateToCar = gyve(car);
const f1 = { ... };
// car <-- f1
const f1Car = delegateToCar(f1);