Skip to content
Snippets Groups Projects
Commit dc102bbd authored by Zdravko Iliev's avatar Zdravko Iliev
Browse files

fix typo

parent e8de4180
No related branches found
No related tags found
1 merge request!1Draft: Resolve "[Document Sealing] Implement PDF parser"
......@@ -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);
......
......@@ -79,7 +79,7 @@ class PDFparser {
: null;
const y =
typeof typeof coords[index + 1] !== "undefined"
typeof coords[index + 1] !== "undefined"
? parseFloat(coords[index + 1].y)
: null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment