11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
/**
|
|
* 最后通知时间显示转换
|
|
*/
|
|
import timeFormatter from './time-formatter';
|
|
export default function (flight) {
|
|
if (flight['LACL']) {
|
|
return timeFormatter(flight['LACL']);
|
|
} else {
|
|
return '';
|
|
}
|
|
} |