Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/wonlog/node_modules/date-fns/esm/locale/ja/_lib/formatDistance/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 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}}年近く'
}
};
export default function formatDistance(token, count, options) {
options = options || {};
var result;
if (typeof formatDistanceLocale[token] === 'string') {
result = formatDistanceLocale[token];
} else if (count === 1) {
if (options.addSuffix && formatDistanceLocale[token].oneWithSuffix) {
result = formatDistanceLocale[token].oneWithSuffix;
} else {
result = formatDistanceLocale[token].one;
}
} else {
if (options.addSuffix && formatDistanceLocale[token].otherWithSuffix) {
result = formatDistanceLocale[token].otherWithSuffix.replace('{{count}}', count);
} else {
result = formatDistanceLocale[token].other.replace('{{count}}', count);
}
}
if (options.addSuffix) {
if (options.comparison > 0) {
return result + '後';
} else {
return result + '前';
}
}
return result;
} |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]-- |