Skip to content

modulex/attribute

 
 

Repository files navigation

attribute

attribute management

attribute NPM downloads Build Status Coverage Status Dependency Status node version

example

var Attribute = require('modulex-attribute');
var X = Attribute.extend({
},{
    ATTRS:{
        x: {
            getter:function(){
                return 1;
            }
        }
    }
});
var y = new X();
y.get('x') // => 1

Packages

No packages published

Languages

  • JavaScript 95.7%
  • HTML 4.3%