({ name, email, timestamp, timezoneOffset })
| 1 | export function formatAuthor({ name, email, timestamp, timezoneOffset }) { |
| 2 | timezoneOffset = formatTimezoneOffset(timezoneOffset) |
| 3 | return `${name} <${email}> ${timestamp} ${timezoneOffset}` |
| 4 | } |
| 5 | |
| 6 | // The amount of effort that went into crafting these cases to handle |
| 7 | // -0 (just so we don't lose that information when parsing and reconstructing) |
no test coverage detected
searching dependent graphs…