mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
8 lines
201 B
JavaScript
8 lines
201 B
JavaScript
//#region src/dom/platform.ts
|
|
function isMacOS() {
|
|
return typeof navigator !== "undefined" && /mac/i.test(navigator.userAgent);
|
|
}
|
|
//#endregion
|
|
export { isMacOS };
|
|
|
|
//# sourceMappingURL=platform.js.map
|