1
0
Fork 0
freesewing/packages/core/src/option.js
2019-08-03 15:03:33 +02:00

9 lines
135 B
JavaScript

function Option(config) {
this.id = config.id
this.config = config
this.val = config.val
return this
}
export default Option