TDD 测试驱动开发

数据效验

  1. // 效验null
  2. function isNull(val) {
  3. return val === null;
  4. }
  5. // 效验''空字符串
  6. function isEmpty(val) {
  7. return val === '';
  8. }
  9. // 清除左侧空格
  10. function leftTrim(str) {
  11. return str.replace(/^\s*/g,"");
  12. }
  13. // 清除左侧空格
  14. function rightTrim(str) {
  15. return str.replace(/\s*$/g,"");
  16. }
  17. // 清除两侧空格
  18. function Trim(str) {
  19. return leftTrim(rightTrim(str));
  20. }
  21. function uuid() {
  22. const s = [];
  23. const hexDigits = '0123456789abcdef';
  24. for (let i = 0; i < 36; i += 1) {
  25. s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
  26. }
  27. s[14] = '4'; // bits 12-15 of the time_hi_and_version field to 0010
  28. s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01
  29. s[8] = s[13] = s[18] = s[23] = '-';
  30. const uuid = s.join('');
  31. return uuid;
  32. };
  33. function getHash(hash) {
  34. const arr = hash.split('/');
  35. const fin = arr[arr.length - 1].split('?');
  36. return fin[0];
  37. };
  38. function getSearch(hash, name) {
  39. if (hash.split('?')[1]) {
  40. const arr = hash.split('?')[1].split('&');
  41. for (let i = 0; i < arr.length; i++) {
  42. const key = arr[i].split('=')[0];
  43. const value = arr[i].split('=')[1];
  44. if (key == name) {
  45. return value;
  46. }
  47. }
  48. }
  49. return '';
  50. };