attribute.js 209 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 'use strict'; module.exports = (function() { var Attribute = function(options) { if (options.type === undefined) options = {type: options}; this.type = options.type; }; return Attribute; })();