* Only requests the HEAD content, for the file size.
(path: string, cb: BFSCallback<number>)
| 432 | * Only requests the HEAD content, for the file size. |
| 433 | */ |
| 434 | private _requestFileSizeAsync(path: string, cb: BFSCallback<number>): void { |
| 435 | getFileSizeAsync(this.getXhrPath(path), cb); |
| 436 | } |
| 437 | private _requestFileSizeSync(path: string): number { |
| 438 | return getFileSizeSync(this.getXhrPath(path)); |
| 439 | } |
no test coverage detected