If i have a certain object say:
function object1(){
function func(){...}
*rest of objec1 content*
...}
exports.func=func; //<---this is wrong (compiler error);
is there a way for me to export func() from outside object1 bounds?
or,within the object1 bounds, and in this case, how to use it from another place?