index.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var formatDistanceLocale = {
  7. lessThanXSeconds: {
  8. one: 'น้อยกว่า 1 วินาที',
  9. other: 'น้อยกว่า {{count}} วินาที'
  10. },
  11. xSeconds: {
  12. one: '1 วินาที',
  13. other: '{{count}} วินาที'
  14. },
  15. halfAMinute: 'ครึ่งนาที',
  16. lessThanXMinutes: {
  17. one: 'น้อยกว่า 1 นาที',
  18. other: 'น้อยกว่า {{count}} นาที'
  19. },
  20. xMinutes: {
  21. one: '1 นาที',
  22. other: '{{count}} นาที'
  23. },
  24. aboutXHours: {
  25. one: 'ประมาณ 1 ชั่วโมง',
  26. other: 'ประมาณ {{count}} ชั่วโมง'
  27. },
  28. xHours: {
  29. one: '1 ชั่วโมง',
  30. other: '{{count}} ชั่วโมง'
  31. },
  32. xDays: {
  33. one: '1 วัน',
  34. other: '{{count}} วัน'
  35. },
  36. aboutXWeeks: {
  37. one: 'ประมาณ 1 สัปดาห์',
  38. other: 'ประมาณ {{count}} สัปดาห์'
  39. },
  40. xWeeks: {
  41. one: '1 สัปดาห์',
  42. other: '{{count}} สัปดาห์'
  43. },
  44. aboutXMonths: {
  45. one: 'ประมาณ 1 เดือน',
  46. other: 'ประมาณ {{count}} เดือน'
  47. },
  48. xMonths: {
  49. one: '1 เดือน',
  50. other: '{{count}} เดือน'
  51. },
  52. aboutXYears: {
  53. one: 'ประมาณ 1 ปี',
  54. other: 'ประมาณ {{count}} ปี'
  55. },
  56. xYears: {
  57. one: '1 ปี',
  58. other: '{{count}} ปี'
  59. },
  60. overXYears: {
  61. one: 'มากกว่า 1 ปี',
  62. other: 'มากกว่า {{count}} ปี'
  63. },
  64. almostXYears: {
  65. one: 'เกือบ 1 ปี',
  66. other: 'เกือบ {{count}} ปี'
  67. }
  68. };
  69. var formatDistance = function formatDistance(token, count, options) {
  70. var result;
  71. var tokenValue = formatDistanceLocale[token];
  72. if (typeof tokenValue === 'string') {
  73. result = tokenValue;
  74. } else if (count === 1) {
  75. result = tokenValue.one;
  76. } else {
  77. result = tokenValue.other.replace('{{count}}', String(count));
  78. }
  79. if (options !== null && options !== void 0 && options.addSuffix) {
  80. if (options.comparison && options.comparison > 0) {
  81. if (token === 'halfAMinute') {
  82. return 'ใน' + result;
  83. } else {
  84. return 'ใน ' + result;
  85. }
  86. } else {
  87. return result + 'ที่ผ่านมา';
  88. }
  89. }
  90. return result;
  91. };
  92. var _default = formatDistance;
  93. exports.default = _default;
  94. module.exports = exports.default;