LjStringHelper.js 561 B

1234567891011121314151617181920212223242526272829303132333435
  1. class LjStringHelper
  2. {
  3. /**
  4. * Is null
  5. * @param str the string
  6. * @returns {boolean} true or false
  7. */
  8. static isNull(str)
  9. {
  10. if(str == null || str.trim() == '')
  11. {
  12. return true;
  13. }
  14. return false;
  15. }
  16. /**
  17. * Is non null
  18. * @param str the string
  19. * @returns {boolean} true or false
  20. */
  21. static isNonNull(str)
  22. {
  23. if(str != null && str.trim() != '')
  24. {
  25. return true;
  26. }
  27. return false;
  28. }
  29. }
  30. module.exports = LjStringHelper;