nino-github-example
Version:
Get a list of github user repos
19 lines (15 loc) • 351 B
JavaScript
function hello(){
return "world";
}
function helloWorld(){
return hello() + " again";
}
function myPrivateFunction(number) {
return number + 1;
}
function increment(number) {
return myPrivateFunction(number);
}
module.exports.hello = hello;
module.exports.helloWorldAgain = helloWorld;
module.exports.increment = increment;