forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[api] Added hacker module. Added default values for all methods. Clea…
…ned up errant methods. Added mustache helper.
- Loading branch information
Showing
10 changed files
with
78 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
var faker = require('../index'); | ||
|
||
var hacker = { | ||
|
||
abbreviation : function () { | ||
return faker.random.array_element(faker.definitions.hacker.abbreviation); | ||
}, | ||
|
||
adjective : function () { | ||
return faker.random.array_element(faker.definitions.hacker.adjective); | ||
}, | ||
|
||
noun : function () { | ||
return faker.random.array_element(faker.definitions.hacker.noun); | ||
}, | ||
|
||
verb : function () { | ||
return faker.random.array_element(faker.definitions.hacker.verb); | ||
}, | ||
|
||
ingverb : function () { | ||
return faker.random.array_element(faker.definitions.hacker.ingverb); | ||
}, | ||
|
||
phrase : function () { | ||
|
||
var data = { | ||
abbreviation: hacker.abbreviation(), | ||
adjective: hacker.adjective(), | ||
ingverb: hacker.ingverb(), | ||
noun: hacker.noun(), | ||
verb: hacker.verb() | ||
}; | ||
|
||
var phrase = faker.random.array_element([ "If we {{verb}} the {{noun}}, we can get to the {{abbreviation}} {{noun}} through the {{adjective}} {{abbreviation}} {{noun}}!", | ||
"We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", | ||
"Try to {{verb}} the {{abbreviation}} {{noun}}, maybe it will {{verb}} the {{adjective}} {{noun}}!", | ||
"You can't {{verb}} the {{noun}} without {{ingverb}} the {{adjective}} {{abbreviation}} {{noun}}!", | ||
"Use the {{adjective}} {{abbreviation}} {{noun}}, then you can {{verb}} the {{adjective}} {{noun}}!", | ||
"The {{abbreviation}} {{noun}} is down, {{verb}} the {{adjective}} {{noun}} so we can {{verb}} the {{abbreviation}} {{noun}}!", | ||
"{{ingverb}} the {{noun}} won't do anything, we need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", | ||
"I'll {{verb}} the {{adjective}} {{abbreviation}} {{noun}}, that should {{noun}} the {{abbreviation}} {{noun}}!" | ||
]); | ||
|
||
return faker.helpers.mustache(phrase, data); | ||
|
||
}, | ||
|
||
|
||
}; | ||
|
||
module.exports = hacker; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters