Skip to content
Snippets Groups Projects

Draft: Resolve "[Document Sealing] Implement PDF parser"

Open Zdravko Iliev requested to merge 1-document-sealing-implement-pdf-parser into master
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -58,7 +58,7 @@ class PDFparser {
const x = typeof coords[index + 1] !== "undefined"
? parseFloat(coords[index + 1].x)
: null;
const y = typeof typeof coords[index + 1] !== "undefined"
const y = typeof coords[index + 1] !== "undefined"
? parseFloat(coords[index + 1].y)
: null;
console.log(x, y);
Loading