If anyone flicked through the uncompressed version of jQuery, one may encounter something like:
if ( typeof module === "object"&& typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
Notice the throw new Error()
part. If I am not mistaken, it only throws the error if a window and document are not present. I am aware that things like Node.js could trigger this error, but can a normal HTML, CSS and JS web page trigger this in any way?