spec-js

v1.0.0
Creates fast, prototypicaly inherited, super-calling constructors

Spec

What

A fast, prototypicaly inherited, super-calling constructor-maker

Why?

Makes protypical inheritance a bit easier.

Usage

require()

var createSpec = require('spec-js');

Make a constructor

function Shape(settings){
    this.sides = settings.sides;
}

Overwrite the identifier with a specd version

Shape = createSpec(Shape);

This creates a specd version of Shape that inherrits from Object.

To inherit from this constructor:

function Square(settings){
    this.sides = 4;
    this.sideLength = settings.sideLength;
}
npm i spec-js

Metadata

  • Unknown
  • Whatever
  • Kory Nunn
  • released 10/7/2014

Downloads

Maintainers