(date, format)
| 39 | * @returns {string} |
| 40 | */ |
| 41 | export function formatDateWithCFormatString(date, format) { |
| 42 | const dt = _convertJSDateToGLibDateTime(date); |
| 43 | |
| 44 | return dt?.format(format) ?? ''; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Formats a time span string representing the |
no test coverage detected
searching dependent graphs…