UNPKG
captchaguru
Version:
latest (1.0.0)
1.0.0
API wrapper for captcha.guru
captchaguru
/
tests
/
test.js
7 lines
(5 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
Guru
=
require
(
"../src/export.js"
);
const
solver =
new
Guru
(
"apiKey"
,
"hcaptcha"
,
"93d2dffa-6cad-4031-9c00-4741a03c569d"
,
"http://learn.captcha.guru/ln/hcaptcha/"
);
void
(
async
function
main
(
) {
console
.
log
(
await
solver.
solve
()); })();