mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
import moment from 'moment'
|
|
// import regex_parse from './parseCommon.js';
|
|
|
|
|
|
exports.formatTime = (timestamp) => {
|
|
return moment.unix(timestamp).format("YYYY-MM-DD HH:mm:ss")
|
|
}
|