go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/nodes/static/_nextjs/src/components/utils.ts (about) 1 /** 2 * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 3 * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 */ 5 export function currentOS() { 6 const os = ['Windows', 'Linux', 'Mac']; // add your OS values 7 return os.find(v => navigator.userAgent.indexOf(v) >= 0); 8 }