aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric <[email protected]>2020-03-27 16:33:47 -0400
committerEric <[email protected]>2020-03-27 16:33:47 -0400
commit5fe28f4363697c56eace727ddcf0f0cf879a9661 (patch)
tree8587f711e7ac4651537df21fd4a7206ef6237249 /lib
parent3b2fa4aebccee52ae1bafc15d575061fb30c3cf1 (diff)
downloadfaker-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.js2
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]$/;