不要怂,就是干,撸起袖子干!

attribute.js 176 Bytes
'use strict';

var Attribute = function(options) {
    if (options.type === undefined) options = {type: options};
    this.type = options.type;
};

module.exports = Attribute;