mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
9 lines
288 B
TypeScript
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/))
|
|
);
|
|
}
|