( parentWindow, ampdoc, opt_strictForUnitTest )
| 218 | * @visibleForTesting |
| 219 | */ |
| 220 | export function getBootstrapBaseUrl( |
| 221 | parentWindow, |
| 222 | ampdoc, |
| 223 | opt_strictForUnitTest |
| 224 | ) { |
| 225 | return ( |
| 226 | getCustomBootstrapBaseUrl(parentWindow, ampdoc, opt_strictForUnitTest) || |
| 227 | getDefaultBootstrapBaseUrl(parentWindow) |
| 228 | ); |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * @param {string} url |
no test coverage detected