(ampersand = false)
| 16 | } |
| 17 | |
| 18 | export function getDeploymentIdQuery(ampersand = false): string { |
| 19 | let id = getDeploymentId() |
| 20 | if (id) { |
| 21 | return `${ampersand ? '&' : '?'}dpl=${id}` |
| 22 | } |
| 23 | return '' |
| 24 | } |
| 25 | |
| 26 | export function getAssetToken(): string | undefined { |
| 27 | return ( |
nothing calls this directly
no test coverage detected