6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
|
|
function hello (cb) {
|
||
|
|
console.log('He Stephan', cb);
|
||
|
|
cb();
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = hello;
|