index.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var formatDistanceLocale = {
  7. lessThanXSeconds: {
  8. one: 'mindre end ét sekund',
  9. other: 'mindre end {{count}} sekunder'
  10. },
  11. xSeconds: {
  12. one: '1 sekund',
  13. other: '{{count}} sekunder'
  14. },
  15. halfAMinute: 'ét halvt minut',
  16. lessThanXMinutes: {
  17. one: 'mindre end ét minut',
  18. other: 'mindre end {{count}} minutter'
  19. },
  20. xMinutes: {
  21. one: '1 minut',
  22. other: '{{count}} minutter'
  23. },
  24. aboutXHours: {
  25. one: 'cirka 1 time',
  26. other: 'cirka {{count}} timer'
  27. },
  28. xHours: {
  29. one: '1 time',
  30. other: '{{count}} timer'
  31. },
  32. xDays: {
  33. one: '1 dag',
  34. other: '{{count}} dage'
  35. },
  36. aboutXWeeks: {
  37. one: 'cirka 1 uge',
  38. other: 'cirka {{count}} uger'
  39. },
  40. xWeeks: {
  41. one: '1 uge',
  42. other: '{{count}} uger'
  43. },
  44. aboutXMonths: {
  45. one: 'cirka 1 måned',
  46. other: 'cirka {{count}} måneder'
  47. },
  48. xMonths: {
  49. one: '1 måned',
  50. other: '{{count}} måneder'
  51. },
  52. aboutXYears: {
  53. one: 'cirka 1 år',
  54. other: 'cirka {{count}} år'
  55. },
  56. xYears: {
  57. one: '1 år',
  58. other: '{{count}} år'
  59. },
  60. overXYears: {
  61. one: 'over 1 år',
  62. other: 'over {{count}} år'
  63. },
  64. almostXYears: {
  65. one: 'næsten 1 år',
  66. other: 'næsten {{count}} år'
  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. return 'om ' + result;
  82. } else {
  83. return result + ' siden';
  84. }
  85. }
  86. return result;
  87. };
  88. var _default = formatDistance;
  89. exports.default = _default;
  90. module.exports = exports.default;