MCPcopy Create free account
hub / github.com/dailydotdev/apps / isExtensionCapableBrowser

Function isExtensionCapableBrowser

packages/shared/src/lib/func.ts:205–208  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

203// gate on this so users on browsers we don't ship for never get dragged into
204// a flow that can never complete for them. Only Chrome and Edge ship today.
205export const isExtensionCapableBrowser = (): boolean => {
206 const name = getCurrentBrowserName();
207 return name === BrowserName.Chrome || name === BrowserName.Edge;
208};
209
210export const shuffleArray = <T>(array: T[]): T[] => {
211 const newArray = array.slice();

Callers 4

SearchControlHeaderFunction · 0.90
useIframeEmbedFunction · 0.90

Calls 1

getCurrentBrowserNameFunction · 0.85

Tested by

no test coverage detected