move bandwidth-estimate.ts

This commit is contained in:
Samuel Newman
2025-06-10 23:46:53 +03:00
parent 475f4f9eb6
commit 3049797665
2 changed files with 1 additions and 1 deletions
@@ -1,11 +0,0 @@
let latestBandwidthEstimate: number | undefined
export function get() {
return latestBandwidthEstimate
}
export function set(estimate: number) {
if (!isNaN(estimate)) {
latestBandwidthEstimate = estimate
}
}