attribute.js 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 'use strict'; var Attribute = function(options) { if (options.type === undefined) options = {type: options}; this.type = options.type; }; module.exports = Attribute; module.exports.Attribute = Attribute; module.exports.default = Attribute;