It seems that in the main.js file of a Parse.com cloud code file,
the "underscore" library (toobox, whatever) is available for use when needed.
For example in this question the "underscore" library (toobox, whatever) would seem to be available and ready to use in main.js ...
// a great toolbox for dealing with collections and other stuff
var _ = require('underscore');
Parse.Cloud.define("someFunction", function(request, response) {
...
_.each(players, function(player) {
... and indeed that works perfectly.
What is the "underscore" library (/whatever) ... where does it exist in the pipeline? Is it from Parse, from javascript, from something else? Why is it "available" in Parse's cloud code - that is to say, does Parse "include" it somewhere, or indeed does the issue have nothing to do with Parse, or?