If you declared your collection globally:
// Client
window[collection_name].find()
// Server
global[collection_name].find()
or
this[collection_name].find()
where this is the context outside of any functions
// Store context of this in "outside" variable
var outside = this;
function () {
outside[collection_name].find();
}
Using this is handy because it works on both client ({window}) & server ({global})