(seconds)
| 2168 | } |
| 2169 | |
| 2170 | function toDisplayDate (seconds) { |
| 2171 | return new Date(seconds * 1000).toLocaleString('en-GB', { |
| 2172 | day: 'numeric', |
| 2173 | month: 'numeric', |
| 2174 | year: 'numeric', |
| 2175 | hour: 'numeric', |
| 2176 | minute: '2-digit', |
| 2177 | timeZoneName: 'short', |
| 2178 | timeZone: 'UTC' |
| 2179 | }); |
| 2180 | } |
| 2181 | |
| 2182 | function toDisplayPullRequestList (build, isGitHubRelease) { |
| 2183 | const remoteUrl = build.remoteUrl || (build.git ? build.git.remoteUrl : ''); |
no outgoing calls
no test coverage detected