I have a function declared
x.funstuff = function(){
}
When I want to call it within a file I simply declare
x = {};
However when I call it from another file I get issues. Even after I use x = {};
in that seperate file.
How does one call this function from another file?