This commit is contained in:
Rikuoh Tsujitani 2023-11-27 11:30:32 +09:00
parent de840f111c
commit 29d7b51d3f

View file

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const length = 20; const length = 20;
const charset = 'abcdefghijklmnopqrstuvwxyz' + 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + '0123456789' + '!@#$%^&*+?{}'; const charset = 'abcdefghijklmnopqrstuvwxyz' + 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + '0123456789' + '!@#$%^&*+?{}()';
function passwordGenerator() { function passwordGenerator() {
let password = ''; let password = '';