1
0
Fork 0
freesewing/packages/core/src/option.js

10 lines
140 B
JavaScript
Raw Normal View History

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