37 lines
423 B
JavaScript
37 lines
423 B
JavaScript
|
function echo() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function shout() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function repeat() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function pieceOfWord() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function firstWord() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function capitalize(word) {
|
||
|
return word.charAt(0).toUpperCase() + word.slice(1);
|
||
|
// This function just capitalizes the word given to it, use in conjunction with titleCreator
|
||
|
}
|
||
|
|
||
|
function titleCreator() {
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
echo,
|
||
|
shout,
|
||
|
repeat,
|
||
|
pieceOfWord,
|
||
|
firstWord,
|
||
|
titleCreator
|
||
|
}
|