UNPKG

react-pdf

Version:

Display PDFs in your React app as easily as if they were images.

14 lines (13 loc) 261 B
export default class Ref { constructor({ num, gen }) { this.num = num; this.gen = gen; } toString() { let str = `${this.num}R`; if (this.gen !== 0) { str += this.gen; } return str; } }