Files
biomedjs/node_modules/piler/examples/simple/share.js
2014-09-14 07:04:16 -04:00

8 lines
165 B
JavaScript

(function(exports){
exports.test = function(){
return 'This is a shared module';
};
}(typeof exports === 'undefined' ? this.share = {} : exports));