blob: 8a8bd48c2aea20f8fba7abf0f0ebccc8ed2cfde2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { setOldLoading } from "../client";
export const isLowMemory = () => {
if (
/webOS|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|PlayStation|Nintendo|Opera Mini/i.test(
navigator.userAgent,
)
) {
setOldLoading(true);
}
};
|