My code passes the basic tests, then returns "NoExecFunction" when I run check solution. Not sure why this is happening.
Here's my code:
const isAllUpper = (text) =>{ if (! text) { return true; } else { return text.toUpperCase() === text; }
};