diff options
| author | Eric <[email protected]> | 2020-03-27 16:33:47 -0400 |
|---|---|---|
| committer | Eric <[email protected]> | 2020-03-27 16:33:47 -0400 |
| commit | 5fe28f4363697c56eace727ddcf0f0cf879a9661 (patch) | |
| tree | 8587f711e7ac4651537df21fd4a7206ef6237249 /lib | |
| parent | 3b2fa4aebccee52ae1bafc15d575061fb30c3cf1 (diff) | |
| download | faker-5fe28f4363697c56eace727ddcf0f0cf879a9661.tar.xz faker-5fe28f4363697c56eace727ddcf0f0cf879a9661.zip | |
Removed an unused variable, password, found in internet.js on line 354
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/internet.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internet.js b/lib/internet.js index ca33672d..658607a1 100644 --- a/lib/internet.js +++ b/lib/internet.js @@ -351,7 +351,7 @@ var Internet = function (faker) { * Copyright(c) 2011-2013 Bermi Ferrer <[email protected]> * MIT Licensed */ - var consonant, letter, password, vowel; + var consonant, letter, vowel; letter = /[a-zA-Z]$/; vowel = /[aeiouAEIOU]$/; consonant = /[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]$/; |
