mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
(function(exports){
|
|
|
|
exports.test = function(){
|
|
return 'This is a shared module';
|
|
};
|
|
|
|
}(typeof exports === 'undefined' ? this.share = {} : exports));
|