We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56eccc9 commit 70bd6ffCopy full SHA for 70bd6ff
js/load-image-exif.js
@@ -17,6 +17,8 @@
17
if (typeof define === 'function' && define.amd) {
18
// Register as an anonymous AMD module:
19
define(['load-image', 'load-image-meta'], factory);
20
+ } else if (typeof module !== 'undefined' && module.exports) {
21
+ factory(require('./load-image'), require('./load-image-meta'));
22
} else {
23
// Browser globals:
24
factory(window.loadImage);
0 commit comments