We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1fc11e commit 417e3c9Copy full SHA for 417e3c9
README.md
@@ -11,7 +11,7 @@ TypeScript is supported (thanks to `mirada`).
11
```js
12
import cvModule from "@techstark/opencv-js";
13
14
-async function getCv() {
+async function getOpenCv() {
15
let cv;
16
if (cvModule instanceof Promise) {
17
cv = await cvModule;
@@ -25,7 +25,7 @@ async function getCv() {
25
}
26
27
async function main() {
28
- const cv = await getCv();
+ const cv = await getOpenCv();
29
console.log("OpenCV.js is ready!");
30
// You can now use OpenCV functions here
31
console.log(cv.getBuildInformation());
0 commit comments