本文整理汇总了TypeScript中luxon.Duration类的典型用法代码示例。如果您正苦于以下问题:TypeScript Duration类的具体用法?TypeScript Duration怎么用?TypeScript Duration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Duration类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: toDuration
export function toDuration(duration: Duration, calendar: Calendar): LuxonDuration {
if (!(calendar instanceof Calendar)) {
throw new Error('must supply a Calendar instance')
}
return LuxonDuration.fromObject({
...duration,
locale: calendar.dateEnv.locale.codes[0]
})
}
示例2: duration
export function duration(input: any) {
if (!isInputValid(input)) {
return '-';
}
// formatting does not support optionally omitting fields so we have to get
// a little weird with the format strings and the durations we send into them
const baseDuration = Duration.fromMillis(parseInt(input, 10));
const days = Math.floor(baseDuration.as('days'));
// remove any days - we will add them manually if needed
const thisDuration = baseDuration.minus({ days: Math.floor(baseDuration.as('days')) });
const format = thisDuration.days || Math.floor(thisDuration.as('hours')) ? 'hh:mm:ss' : 'mm:ss';
let dayLabel = '';
if (thisDuration.isValid) {
if (days > 0) {
dayLabel = days + 'd';
}
}
return thisDuration.isValid ? dayLabel + thisDuration.toFormat(format) : '-';
}
示例3:
dt.setLocale('fr').toLocaleString(f);
dt.setLocale('en-GB').toLocaleString(f);
dt.setLocale('en-US').toLocaleString(f);
DateTime.fromObject({ zone: 'America/Los_Angeles' });
DateTime.local().setZone('America/Los_Angeles');
DateTime.utc(2017, 5, 15);
DateTime.utc();
DateTime.local().toUTC();
DateTime.utc().toLocal();
DateTime.fromMillis(1527780819458).toMillis();
/* Duration */
const dur = Duration.fromObject({ hours: 2, minutes: 7 });
dt.plus(dur);
dur.hours;
dur.minutes;
dur.seconds;
dur.as('seconds');
dur.toObject();
dur.toISO();
/* Interval */
const later = DateTime.local();
const i = Interval.fromDateTimes(now, later);
i.length();
i.length('years');
i.contains(DateTime.local(2019));