UNPKG

comic-bubbles

Version:

Animated comic bubbles - what else?

13 lines (12 loc) 310 B
export class Bounds { constructor(parent) { this.x = undefined this.y = undefined this.width = undefined this.height = undefined this.parent = parent } getPrefStr() { return this.parent === undefined ? 'bounds' : this.parent.getPrefStr() + '.bounds' } }