mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
var value = 1;
|
|
exports.value = function(){
|
|
console.log(fn)
|
|
return value;
|
|
};
|
|
exports.change = function(val){
|
|
value = val;
|
|
} |