Files
cod-api/utils/captcha.js
2025-10-01 10:16:38 +07:00

8 lines
234 B
JavaScript

const svgCaptcha = require('svg-captcha');
function createCaptcha() {
const captcha = svgCaptcha.create({ size: 5, noise: 7, color: true });
return { svg: captcha.data, text: captcha.text };
}
module.exports = { createCaptcha };