Short Date Formatter
If you want to format times in a short way, you can use the moment-shortformat plugin by @researchgate.
It is based on and similar to the moment.twitter plugin but has a different output.
moment().subtract(5, 'hours').short();
// 5h ago
moment().add(5, 'hours').short();
// in 5h
You can also disable the use of the relative time templates
moment().subtract(1, 'hour').short(false);
// 1h
If the date is too far in the future or the past it will display like that
moment().subtract(500, 'days').short();
// 5 Mar, 1970
当前内容版权归 momentjs.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 momentjs.com .