mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
|
|
export function type(n) {
|
|
return 1 << (n - 1);
|
|
}
|
|
|
|
export function is(mask, value) {
|
|
return (mask & value) === value;
|
|
}
|