diff options
| author | Milos Paunovic <[email protected]> | 2022-01-13 15:06:58 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-13 15:06:58 +0100 |
| commit | 9506122a7725d9919e5a5c6ba036484cb608cd83 (patch) | |
| tree | 4c2c2741db3b03ab79a6abb328e474bb1a48401b | |
| parent | 7d6f2d8f4db0870bf3e2778de2f08444aa264ada (diff) | |
| download | faker-9506122a7725d9919e5a5c6ba036484cb608cd83.tar.xz faker-9506122a7725d9919e5a5c6ba036484cb608cd83.zip | |
chore: remove unused variable (#124)
| -rw-r--r-- | lib/internet.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/internet.js b/lib/internet.js index 649e71f1..06182800 100644 --- a/lib/internet.js +++ b/lib/internet.js @@ -423,8 +423,7 @@ var Internet = function (faker) { * Copyright(c) 2011-2013 Bermi Ferrer <[email protected]> * MIT Licensed */ - var consonant, letter, vowel; - letter = /[a-zA-Z]$/; + var consonant, vowel; vowel = /[aeiouAEIOU]$/; consonant = /[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]$/; var _password = function (length, memorable, pattern, prefix) { |
