7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
"use strict";
|
|
const captcha = require("./");
|
|
|
|
const c = new captcha.MasterCaptcha(true);
|
|
c.setupRandomCaptcha("./here.jpg")
|
|
.then(r => console.log("Code is", r.code));
|