Do nothing if input is empty for removeEXIF operation
This commit is contained in:
parent
0968912954
commit
cbcd45cd70
@ -55,6 +55,9 @@ const Image = {
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
removeEXIF(input, args) {
|
removeEXIF(input, args) {
|
||||||
|
// Do nothing if input is empty
|
||||||
|
if (input.length === 0) return input;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return removeEXIF(input);
|
return removeEXIF(input);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
Loading…
Reference in New Issue
Block a user