I have a collection of helper functions and i like to merge them together with already existing utility modules.
Somehow like this:
var customUtil = require('customUtilites');
customUtil.anotherCustomFunction = function() { ... };
exports = customUtil;
Can this be achieved somehow?