<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 = formatDistance;
var formatDistanceLocale = {
  lessThanXSeconds: {
    one: 'РїРѕРјР°Р»РєСѓ РѕРґ СЃРµРєСѓРЅРґР°',
    other: 'РїРѕРјР°Р»РєСѓ РѕРґ {{count}} СЃРµРєСѓРЅРґРё'
  },
  xSeconds: {
    one: '1 СЃРµРєСѓРЅРґР°',
    other: '{{count}} СЃРµРєСѓРЅРґРё'
  },
  halfAMinute: 'РїРѕР»РѕРІРёРЅР° РјРёРЅСѓС‚Р°',
  lessThanXMinutes: {
    one: 'РїРѕРјР°Р»РєСѓ РѕРґ РјРёРЅСѓС‚Р°',
    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}} РіРѕРґРёРЅРё'
  }
};

function formatDistance(token, count, options) {
  options = options || {};
  var result;

  if (typeof formatDistanceLocale[token] === 'string') {
    result = formatDistanceLocale[token];
  } else if (count === 1) {
    result = formatDistanceLocale[token].one;
  } else {
    result = formatDistanceLocale[token].other.replace('{{count}}', count);
  }

  if (options.addSuffix) {
    if (options.comparison &gt; 0) {
      return 'Р·Р° ' + result;
    } else {
      return 'РїСЂРµРґ ' + result;
    }
  }

  return result;
}

module.exports = exports.default;</pre></body></html>