diff options
| author | Marak <[email protected]> | 2014-09-09 20:31:15 +0200 |
|---|---|---|
| committer | Marak <[email protected]> | 2014-09-09 20:31:15 +0200 |
| commit | f4c05f8fbb9802e1ff0859fa5fdc19d0e6b70239 (patch) | |
| tree | 19d35550da90deb339fd470947d87a09c755c51f /lib/random.js | |
| parent | fd95d87121efbd7aa2098ffa1b414c966c94b01b (diff) | |
| download | faker-f4c05f8fbb9802e1ff0859fa5fdc19d0e6b70239.tar.xz faker-f4c05f8fbb9802e1ff0859fa5fdc19d0e6b70239.zip | |
Fix random number
Diffstat (limited to 'lib/random.js')
| -rw-r--r-- | lib/random.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/random.js b/lib/random.js index 78ef2383..7e8cca37 100644 --- a/lib/random.js +++ b/lib/random.js @@ -98,7 +98,7 @@ var random = { }, phone_codes: function () { - return faker.array_element(definitions.phone_codes); + return faker.random.array_element(definitions.phone_codes); }, domain_suffix: function () { return faker.random.array_element(definitions.domain_suffix); |
