Checks if a string is (null) or empty.

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