0.1.0 • Published 10 years ago

light-o v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

Light-O

Build Status Dependencies Status NPM version stable

browser support

Minimally minimal prototypical OO library.

Example

var Base = require('light-o')

var Thing = Base.clone(function() {
  this.compute = function() {
    return 42;
  }
})

var newThing = Thing.clone()
newThing.compute()
// => 42

Installing

Grab it from NPM:

$ npm install light-o

Platform support

This library assumes an ES5 environment, but can be easily supported in ES3 platforms by the use of shims. Just include es5-shim :3

Licence

Copyright (c) 2013 Quildreen Motta.

Released under the MIT licence.