1
0
Fork 0
freesewing/src/snippet.js

14 lines
247 B
JavaScript
Raw Normal View History

2018-07-23 11:12:06 +00:00
import attributes from './attributes'
function snippet (def, anchor, description = '')
{
this.def = def;
this.anchor = anchor;
this.description = description;
this.attributes = new attributes();
return this;
}
export default snippet;