mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-09 05:00:30 +08:00
12 lines
204 B
JavaScript
12 lines
204 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")
|
|
}
|
|
|
|
console.log(regex_parse)
|
|
|
|
|