UNPKG

@replytechnologies/reply-pdf

Version:
10 lines (9 loc) 213 B
module.exports = class Size { constructor(properties) { this.width = properties.width || 0; this.height = properties.height || 0; } toArray() { return [ this.width, this.height ]; } }