about summary refs log tree commit diff
path: root/src/view/com/util/post-embeds/VideoEmbedInner/bandwidth-estimate.ts
blob: 122e10aefd881a1775ed126b86f8a546bc0239e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let latestBandwidthEstimate: number | undefined

export function get() {
  return latestBandwidthEstimate
}

export function set(estimate: number) {
  if (!isNaN(estimate)) {
    latestBandwidthEstimate = estimate
  }
}