1
0
Fork 0
freesewing/src/option.js

11 lines
141 B
JavaScript
Raw Normal View History

2018-07-23 11:12:06 +00:00
function option (config)
{
this.id = config.id;
this.config = config;
this.val = config.val;
return this;
}
export default option;