Skip to content

Commit

Permalink
change let variables to const
Browse files Browse the repository at this point in the history
  • Loading branch information
yesidrs committed Oct 31, 2022
1 parent 1a89857 commit 4048376
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/yesiddev/organisms/PassGenerator.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import PassOptions from './PassOptions.svelte'
// strings
let numbers = '0123456789'
let lowerChars = 'abcdefghijklmnopqrstuvwxyz'
let upperChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
let symbols = '!@#$%^&*_-+=[](){}'
const numbers = '0123456789'
const lowerChars = 'abcdefghijklmnopqrstuvwxyz'
const upperChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
const symbols = '!@#$%^&*_-+=[](){}'
let newPass
// booleans
Expand Down

0 comments on commit 4048376

Please sign in to comment.