Files

8 lines
165 B
JavaScript
Raw Permalink Normal View History

2014-09-14 07:04:16 -04:00
(function(exports){
exports.test = function(){
return 'This is a shared module';
};
}(typeof exports === 'undefined' ? this.share = {} : exports));