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