Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Likogann committed Feb 23, 2023
1 parent 894c293 commit d1d159a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object.genCaptcha = function(config) {
object.genCaptchav2 = function() {
// Generate a background colour. We cannot do this inside var config ...
// as it's used twice
bgColour = "#000000".replace(/0/g,function(){return (~~(Math.random()*16)).toString(16)});
let bgColour = "#000000".replace(/0/g,function(){return (~~(Math.random()*16)).toString(16)});
const config = {
// ## Image
width: 400,
Expand Down

0 comments on commit d1d159a

Please sign in to comment.