From 5501c36c1d2b8439a7d7cfd6bd2816ccc20fe1bd Mon Sep 17 00:00:00 2001 From: Justin-dynamsoft <117710848+Justin-dynamsoft@users.noreply.github.com> Date: Tue, 3 Jun 2025 15:37:03 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ecc2278..cd45fbb 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Below is the complete Hello World sample page that uses the precompiled script s }); (async () => { // Launch the scanner and wait for the result - const result = await mrzScanner.launch({}); + const result = await mrzScanner.launch(); })(); @@ -173,7 +173,7 @@ Above you will see the **simplest** way that you can initialize the MRZ Scanner. ```js (async () => { // Launch the scanner and wait for the result - const result = await mrzscanner.launch({}); + const result = await mrzscanner.launch(); console.log(result); })(); ```