light-o

0.1.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i light-o

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • killdream