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

attribute.js 202 Bytes
"use strict";

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

	return Attribute;
})();