mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-19 04:08:54 +00: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');
|
||
|
|
};
|