mirror of
https://github.com/foliojs/pdfkit.git
synced 2025-12-08 20:15:54 +00:00
Handle JS quirks with large decimal precision checks resulting from the calculations of next lines in the LineWrapper
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
export function PDFNumber(n) {
|
|
// PDF numbers are strictly 32bit
|
|
// so convert this number to the nearest 32bit number
|
|
// @see ISO 32000-1 Annex C.2 (real numbers)
|
|
return Math.fround(n);
|
|
}
|