Update globe files

This commit is contained in:
2021-10-02 20:33:41 +02:00
parent 2dc1393dc2
commit 717d100d76
34 changed files with 97 additions and 105 deletions

View File

@@ -0,0 +1,3 @@
export default function isPowerOf2(value) {
return (value & (value - 1)) == 0;
}