Files
5chan/src/lib/utils/view-utils.ts
T

4 lines
89 B
TypeScript
Raw Normal View History

export const isHomeView = (pathname: string): boolean => {
return pathname === '/';
};