UNPKG

firescript

Version:
14 lines (10 loc) 193 B
import { Fruits } from './Fruits'; class Banana extends Fruits { constructor (opts) { this.isSweet = opts.isSweet; } peel () { this.__isPeeled = true; } } export { Banana };