UNPKG

py-uni

Version:

py-uni

9 lines (7 loc) 227 B
import dateFormat from "../share/dateFormat.utils"; export function dataTime(value: any, type = 'yyyy-MM-dd hh:mm:ss'): string { if(!value){ return ''; } return dateFormat(new Date(value), type); }