(callback)
| 1010 | |
| 1011 | img.onload = () => { |
| 1012 | let loadExif = (callback) => callback(1); |
| 1013 | if (typeof EXIF !== "undefined" && EXIF !== null && fixOrientation) { |
| 1014 | loadExif = (callback) => |
| 1015 | EXIF.getData(img, function () { |
nothing calls this directly
no test coverage detected