Spaces:
Sleeping
Sleeping
File size: 206 Bytes
be5030f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
'use strict'
const Option = require('./option')
class FlagOption extends Option {
set (val) {
super.set(true)
}
static create (def) {
return new this(def)
}
}
module.exports = FlagOption
|