<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var formatDistanceLocale = {
  lessThanXSeconds: {
    one: 'bir saniyeden az',
    other: '{{count}} saniyeden az'
  },
  xSeconds: {
    one: '1 saniye',
    other: '{{count}} saniye'
  },
  halfAMinute: 'yarÄ±m dakika',
  lessThanXMinutes: {
    one: 'bir dakikadan az',
    other: '{{count}} dakikadan az'
  },
  xMinutes: {
    one: '1 dakika',
    other: '{{count}} dakika'
  },
  aboutXHours: {
    one: 'yaklaÅŸÄ±k 1 saat',
    other: 'yaklaÅŸÄ±k {{count}} saat'
  },
  xHours: {
    one: '1 saat',
    other: '{{count}} saat'
  },
  xDays: {
    one: '1 gÃ¼n',
    other: '{{count}} gÃ¼n'
  },
  aboutXWeeks: {
    one: 'yaklaÅŸÄ±k 1 hafta',
    other: 'yaklaÅŸÄ±k {{count}} hafta'
  },
  xWeeks: {
    one: '1 hafta',
    other: '{{count}} hafta'
  },
  aboutXMonths: {
    one: 'yaklaÅŸÄ±k 1 ay',
    other: 'yaklaÅŸÄ±k {{count}} ay'
  },
  xMonths: {
    one: '1 ay',
    other: '{{count}} ay'
  },
  aboutXYears: {
    one: 'yaklaÅŸÄ±k 1 yÄ±l',
    other: 'yaklaÅŸÄ±k {{count}} yÄ±l'
  },
  xYears: {
    one: '1 yÄ±l',
    other: '{{count}} yÄ±l'
  },
  overXYears: {
    one: '1 yÄ±ldan fazla',
    other: '{{count}} yÄ±ldan fazla'
  },
  almostXYears: {
    one: 'neredeyse 1 yÄ±l',
    other: 'neredeyse {{count}} yÄ±l'
  }
};
var formatDistance = function formatDistance(token, count, options) {
  var result;
  var tokenValue = formatDistanceLocale[token];
  if (typeof tokenValue === 'string') {
    result = tokenValue;
  } else if (count === 1) {
    result = tokenValue.one;
  } else {
    result = tokenValue.other.replace('{{count}}', count.toString());
  }
  if (options !== null &amp;&amp; options !== void 0 &amp;&amp; options.addSuffix) {
    if (options.comparison &amp;&amp; options.comparison &gt; 0) {
      return result + ' sonra';
    } else {
      return result + ' Ã¶nce';
    }
  }
  return result;
};
export default formatDistance;</pre></body></html>