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

attribute.js 209 Bytes
'use strict';

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

  return Attribute;
})();