storybook/code/.storybook/isChromatic.ts
2024-06-25 18:30:42 +02:00

9 lines
288 B
TypeScript

export function isChromatic(windowArg?: any) {
const windowToCheck = windowArg || (typeof window !== 'undefined' && window);
return !!(
windowToCheck &&
(windowToCheck.navigator.userAgent.match(/Chromatic/) ||
windowToCheck.location.href.match(/chromatic=true/))
);
}