this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e28f6d2f370b4e882ed6f23d08ca0f8d94dbac5f 11 lines 220 B view raw
1let latestBandwidthEstimate: number | undefined 2 3export function get() { 4 return latestBandwidthEstimate 5} 6 7export function set(estimate: number) { 8 if (!isNaN(estimate)) { 9 latestBandwidthEstimate = estimate 10 } 11}