<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;
var formatDistanceLocale = {
  lessThanXSeconds: {
    one: '1 ÑÐ¾Ð½Ð¸ÑÐ´Ð°Ð½ ÐºÐ°Ð¼',
    other: '{{count}} ÑÐ¾Ð½Ð¸ÑÐ´Ð°Ð½ ÐºÐ°Ð¼'
  },
  xSeconds: {
    one: '1 ÑÐ¾Ð½Ð¸Ñ',
    other: '{{count}} ÑÐ¾Ð½Ð¸Ñ'
  },
  halfAMinute: 'ÑÑ€Ð¸Ð¼ Ð´Ð°Ò›Ð¸Ò›Ð°',
  lessThanXMinutes: {
    one: '1 Ð´Ð°Ò›Ð¸Ò›Ð°Ð´Ð°Ð½ ÐºÐ°Ð¼',
    other: '{{count}} Ð´Ð°Ò›Ð¸Ò›Ð°Ð´Ð°Ð½ ÐºÐ°Ð¼'
  },
  xMinutes: {
    one: '1 Ð´Ð°Ò›Ð¸Ò›Ð°',
    other: '{{count}} Ð´Ð°Ò›Ð¸Ò›Ð°'
  },
  aboutXHours: {
    one: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ 1 ÑÐ¾Ð°Ñ‚',
    other: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ {{count}} ÑÐ¾Ð°Ñ‚'
  },
  xHours: {
    one: '1 ÑÐ¾Ð°Ñ‚',
    other: '{{count}} ÑÐ¾Ð°Ñ‚'
  },
  xDays: {
    one: '1 ÐºÑƒÐ½',
    other: '{{count}} ÐºÑƒÐ½'
  },
  aboutXWeeks: {
    one: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ 1 Ñ…Ð°Ñ„Ñ‚Ð°',
    other: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ {{count}} Ñ…Ð°Ñ„Ñ‚Ð°'
  },
  xWeeks: {
    one: '1 Ñ…Ð°Ñ„Ñ‚Ð°',
    other: '{{count}} Ñ…Ð°Ñ„Ñ‚Ð°'
  },
  aboutXMonths: {
    one: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ 1 Ð¾Ð¹',
    other: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ {{count}} Ð¾Ð¹'
  },
  xMonths: {
    one: '1 Ð¾Ð¹',
    other: '{{count}} Ð¾Ð¹'
  },
  aboutXYears: {
    one: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ 1 Ð¹Ð¸Ð»',
    other: 'Ñ‚Ð°Ñ…Ð¼Ð¸Ð½Ð°Ð½ {{count}} Ð¹Ð¸Ð»'
  },
  xYears: {
    one: '1 Ð¹Ð¸Ð»',
    other: '{{count}} Ð¹Ð¸Ð»'
  },
  overXYears: {
    one: '1 Ð¹Ð¸Ð»Ð´Ð°Ð½ ÐºÑžÐ¿',
    other: '{{count}} Ð¹Ð¸Ð»Ð´Ð°Ð½ ÐºÑžÐ¿'
  },
  almostXYears: {
    one: 'Ð´ÐµÑÑ€Ð»Ð¸ 1 Ð¹Ð¸Ð»',
    other: 'Ð´ÐµÑÑ€Ð»Ð¸ {{count}} Ð¹Ð¸Ð»'
  }
};
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}}', String(count));
  }
  if (options !== null &amp;&amp; options !== void 0 &amp;&amp; options.addSuffix) {
    if (options.comparison &amp;&amp; options.comparison &gt; 0) {
      return result + 'Ð´Ð°Ð½ ÐºÐµÐ¹Ð¸Ð½';
    } else {
      return result + ' Ð¾Ð»Ð´Ð¸Ð½';
    }
  }
  return result;
};
var _default = formatDistance;
exports.default = _default;
module.exports = exports.default;</pre></body></html>