Skip to content

Commit

Permalink
Merge pull request #388 from yesiddev/main
Browse files Browse the repository at this point in the history
change let variables to const
  • Loading branch information
maadeval committed Nov 1, 2022
2 parents 2670e50 + 4048376 commit 1f2ca85
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

1 comment on commit 1f2ca85

@vercel
Copy link

@vercel vercel bot commented on 1f2ca85 Nov 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.