diff options
| author | Marak <[email protected]> | 2014-09-14 05:31:02 +0200 |
|---|---|---|
| committer | Marak <[email protected]> | 2014-09-14 05:31:02 +0200 |
| commit | 38f9e3a5b25606e605276acf3f39b6e5c8202255 (patch) | |
| tree | 40bcc85c77788949effe1d5701cbaa5a16a01722 /examples/node_min_test.js | |
| parent | 0048b9f6cfd69378ca3ba2f588444e7bb8095d23 (diff) | |
| download | faker-38f9e3a5b25606e605276acf3f39b6e5c8202255.tar.xz faker-38f9e3a5b25606e605276acf3f39b6e5c8202255.zip | |
[refactor] [major] Renamed variable names for consistency Closes #5
[refactor [major] Moved all errant methods from random.js to individual modules. Methods in random.js were causing unnecessary code complication.
Diffstat (limited to 'examples/node_min_test.js')
| -rwxr-xr-x | examples/node_min_test.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/node_min_test.js b/examples/node_min_test.js index f1594f4e..ae7c6fdf 100755 --- a/examples/node_min_test.js +++ b/examples/node_min_test.js @@ -4,6 +4,8 @@ var util = require('util'); var faker = require('../index'); -var card = faker.Helpers.createCard(); +var card = faker.helpers.createCard(); -util.puts(JSON.stringify(card));
\ No newline at end of file +//util.puts(JSON.stringify(card)); + +console.log(card);
\ No newline at end of file |
