Is '' base64 encoded?
This question has this answer which suggests no:
if (str ==='' || str.trim() ===''){ return false; }
But some of the other approaches that use regular expressions return true ... For example:
https://stackblitz.com/edit/js-xjubhf
Thoughts?