Skip to content

ouonet/neo_lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

neo_lang

Target: this is a javascript library for basic enhancement of javascript. #Usage var neo=require('neo_lang');

#API extend var neo=require('neo_lang'); function Shape(){ this.color=0; return this; } Shape.prototype.draw=function(){console.log('draw');} function Point(){ Shape.call(this); this.x=0; this.y=0; return this; } neo.extend(Point,Shape,{ draw:function(){console.log(' Point is drawing');} })

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published