diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
| commit | d55b767039605256c736166a942a9138e3eacfd7 (patch) | |
| tree | 947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/locale/ja/_lib/formatDistance/index.js | |
| parent | 864ce67d89c77d8ef9c3361f80d619853abcf91c (diff) | |
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/ja/_lib/formatDistance/index.js')
| -rw-r--r-- | node_modules/date-fns/locale/ja/_lib/formatDistance/index.js | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/node_modules/date-fns/locale/ja/_lib/formatDistance/index.js b/node_modules/date-fns/locale/ja/_lib/formatDistance/index.js deleted file mode 100644 index f06fc57..0000000 --- a/node_modules/date-fns/locale/ja/_lib/formatDistance/index.js +++ /dev/null @@ -1,104 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; -var formatDistanceLocale = { - lessThanXSeconds: { - one: '1秒未満', - other: '{{count}}秒未満', - oneWithSuffix: '約1秒', - otherWithSuffix: '約{{count}}秒' - }, - xSeconds: { - one: '1秒', - other: '{{count}}秒' - }, - halfAMinute: '30秒', - lessThanXMinutes: { - one: '1分未満', - other: '{{count}}分未満', - oneWithSuffix: '約1分', - otherWithSuffix: '約{{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) { - options = options || {}; - var result; - var tokenValue = formatDistanceLocale[token]; - if (typeof tokenValue === 'string') { - result = tokenValue; - } else if (count === 1) { - if (options.addSuffix && tokenValue.oneWithSuffix) { - result = tokenValue.oneWithSuffix; - } else { - result = tokenValue.one; - } - } else { - if (options.addSuffix && tokenValue.otherWithSuffix) { - result = tokenValue.otherWithSuffix.replace('{{count}}', String(count)); - } else { - result = tokenValue.other.replace('{{count}}', String(count)); - } - } - if (options.addSuffix) { - if (options.comparison && options.comparison > 0) { - return result + '後'; - } else { - return result + '前'; - } - } - return result; -}; -var _default = formatDistance; -exports.default = _default; -module.exports = exports.default;
\ No newline at end of file |
