hippie/gulp/tasks/hello.js

6 lines
89 B
JavaScript
Raw Normal View History

function hello (cb) {
console.log('He Stephan', cb);
cb();
}
module.exports = hello;