StringUtil.js 158 B

12345678910111213
  1. export default class StringUtil {
  2. /**
  3. * 长度
  4. * @param {Object} value
  5. */
  6. static length(value)
  7. {
  8. return value == null ? -1 : value.length
  9. }
  10. }