supercat666's picture
add igv
78c921d
raw
history blame
No virus
190 Bytes
import Option from './option.mjs'
class FlagOption extends Option {
set (val) {
super.set(true)
}
static create (def) {
return new this(def)
}
}
export default FlagOption