UNPKG

kush

Version:

a new hope, now with yarn

17 lines (14 loc) 309 B
var extraInformation; function helloWorld() { return "hello, world"; }; function helloPerson(name) { return `Hello ${name}, ${extraInformation}`; } module.exports = function(info) { extraInformation = info; return { helloWorld: helloWorld, helloPerson: helloPerson }; };