6 lines
65 B
JavaScript
6 lines
65 B
JavaScript
|
|
function callme(cb) {
|
||
|
|
return cb();
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = callme;
|