mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 11:07:00 -04:00
7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
export default computed(() => {
|
|
if (!import.meta.client) {
|
|
return undefined;
|
|
}
|
|
return navigator.platform.toLowerCase().includes('mac');
|
|
});
|