UNPKG
egg-captcha
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
captcha plugin for egg, based on c++ lib ccap
github.com/Raoul1996/egg-captcha
Raoul1996/egg-captcha
egg-captcha
/
app.js
11 lines
(10 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
const
Captcha
=
require
(
'./app/extend/captcha'
);
module
.
exports
=
app
=>
{
const
captcha =
new
Captcha
({}); app.
captcha
= {
generate
(
) {
return
captcha.
generate
(); }, }; };