diff options
Diffstat (limited to 'src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts')
-rw-r--r-- | src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts b/src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts deleted file mode 100644 index 122e10aef..000000000 --- a/src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts +++ /dev/null @@ -1,11 +0,0 @@ -let latestBandwidthEstimate: number | undefined - -export function get() { - return latestBandwidthEstimate -} - -export function set(estimate: number) { - if (!isNaN(estimate)) { - latestBandwidthEstimate = estimate - } -} |