import { isBrowser } from "@/helpers/is-browser";

export const isWindows = isBrowser && /Win/i.test(navigator.userAgent);
