mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 11:46:23 +00:00
9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
import moment from 'moment';
|
|
|
|
/*
|
|
Friendly timestamp
|
|
*/
|
|
|
|
module.exports = function(timestamp) {
|
|
return moment(timestamp).format('MM/DD h:mm:ss a');
|
|
};
|