()
| 96 | } |
| 97 | |
| 98 | get manifestURL(): string | null { |
| 99 | // the manifest section is not part of the b2 spec but it might have been defined anyway |
| 100 | if (this.sections['manifest']) { |
| 101 | return asString(this.sections['manifest']); |
| 102 | } |
| 103 | return null; |
| 104 | } |
| 105 | |
| 106 | get urls(): string[] { |
| 107 | return Array.from(this.indexSection.keys()); |
nothing calls this directly
no test coverage detected