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

10 lines
135 B
JavaScript
Raw Normal View History

function Option(config) {
2019-08-03 15:03:33 +02:00
this.id = config.id
this.config = config
this.val = config.val
2018-07-23 11:12:06 +00:00
2019-08-03 15:03:33 +02:00
return this
2018-07-23 11:12:06 +00:00
}
2019-08-03 15:03:33 +02:00
export default Option