utils.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.addUnit = exports.getSystemInfoSync = exports.nextTick = exports.range = exports.isNumber = exports.isObj = exports.isDef = void 0;
  6. function isDef(value) {
  7. return value !== undefined && value !== null;
  8. }
  9. exports.isDef = isDef;
  10. function isObj(x) {
  11. var type = typeof x;
  12. return x !== null && (type === 'object' || type === 'function');
  13. }
  14. exports.isObj = isObj;
  15. function isNumber(value) {
  16. return /^\d+(\.\d+)?$/.test(value);
  17. }
  18. exports.isNumber = isNumber;
  19. function range(num, min, max) {
  20. return Math.min(Math.max(num, min), max);
  21. }
  22. exports.range = range;
  23. function nextTick(fn) {
  24. setTimeout(function () {
  25. fn();
  26. }, 33.333333333333336);
  27. }
  28. exports.nextTick = nextTick;
  29. var systemInfo = null;
  30. function getSystemInfoSync() {
  31. if (systemInfo == null) {
  32. systemInfo = uni.getSystemInfoSync();
  33. }
  34. return systemInfo;
  35. }
  36. exports.getSystemInfoSync = getSystemInfoSync;
  37. function addUnit(value) {
  38. if (!isDef(value)) {
  39. return undefined;
  40. }
  41. value = String(value);
  42. return isNumber(value) ? value + 'px' : value;
  43. }
  44. exports.addUnit = addUnit;