mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
import moment from 'moment';
|
|
|
|
/*
|
|
Friendly timestamp
|
|
*/
|
|
|
|
module.exports = function(timestamp) {
|
|
return moment(timestamp).format('MM/DD h:mm:ss a');
|
|
};
|