UNPKG

comic-bubbles

Version:

Animated comic bubbles - what else?

13 lines (12 loc) 283 B
export class Margin { constructor(parent) { this.left = 0 this.right = 0 this.bottom = 0 this.top = 0 this.parent = parent } getPrefStr() { return this.parent === undefined ? 'margin' : this.parent.getPrefStr() + '.margin' } }