sharingfunction.js 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 (function(exports) { var item; exports.sharingIn = function(temp) { item = temp; return item; }; exports.sharingOut = function() { return item; }; })(typeof exports === "undefined" ? this["share"]={}: exports);