]> source.dussan.org Git - jquery.git/commitdiff
Fix #13789: Don't throw when module === null. Close gh-1269.
authorEddie Monge <eddie@eddiemonge.com>
Mon, 13 May 2013 20:10:36 +0000 (13:10 -0700)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 20 May 2013 16:57:40 +0000 (18:57 +0200)
src/exports.js

index 37b797075b6911dff52bc161dc71d89dabfabf7d..2d5c56f8a2a49aca122b4d601ed8894953ddb662 100644 (file)
@@ -1,4 +1,4 @@
-if ( typeof module === "object" && typeof module.exports === "object" ) {
+if ( typeof module === "object" && module && typeof module.exports === "object" ) {
        // Expose jQuery as module.exports in loaders that implement the Node
        // module pattern (including browserify). Do not create the global, since
        // the user will be storing it themselves locally, and globals are frowned