Download this file

core.js    12 lines (9 with data), 155 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
'use strict';
function getMessage() {
return 'Hello C2NET!';
}
module.exports = function(dependencies) {
return {
getMessage: getMessage
};
};