1.0.0 • Published 6 years ago

javascript-abstraction v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

javascript-abstraction

Install

$ npm install javascript-abstraction

Usage

import { Abstraction } from "javascript-abstraction";


class Animal {

    constructor() {
        Abstraction.needsInheritance(new.target, Animal);
    }

    say() {
        Abstraction.needsImplementation();
    }

}

class Cat extends Animal {

    say() {
        console.log('Meow!');
    }

}