UNPKG

@cantoo/pdf-lib

Version:

Create and modify PDF files with JavaScript

5 lines 346 B
import { PDFName, PDFNumber } from '../core/index.js'; export const asPDFName = (name) => name instanceof PDFName ? name : PDFName.of(name); export const asPDFNumber = (num) => num instanceof PDFNumber ? num : PDFNumber.of(num); export const asNumber = (num) => num instanceof PDFNumber ? num.asNumber() : num; //# sourceMappingURL=objects.js.map