/**
 * Determines whether the current environment is a client-side (browser) environment.
 *
 * @returns `true` if the current environment is a client-side (browser) environment, `false` otherwise.
 */
export function isClient(): boolean {
  if (typeof window !== "undefined") {
    return true;
  }

  return false;
}
