9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
var Attribute = function(options) {
|
||
|
|
if (options.type === undefined) options = {type: options};
|
||
|
|
this.type = options.type;
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = Attribute;
|