Checks if a string is (null) or undefined.

// (true)
StringFormat.isNullOrUndefined(null);
StringFormat.isNullOrUndefined(undefined);

// (false)
StringFormat.isNullOrUndefined("0");
StringFormat.isNullOrUndefined("null");
StringFormat.isNullOrUndefined("undefined");
StringFormat.isNullOrUndefined("empty");
StringFormat.isNullOrUndefined("whitespace");
StringFormat.isNullOrUndefined(" ");
StringFormat.isNullOrUndefined("");