Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
})();
</script>
</body>
Expand Down Expand Up @@ -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);
})();
```
Expand Down