Files
testing-tool/utils/env.tsx
T
2026-01-27 23:09:57 +08:00

7 lines
226 B
TypeScript

/**
* 判断当前是否处于 Chrome 插件环境
* @returns {false|chrome.storage.LocalStorageArea}
*/
export const isExtension = () => {
return typeof chrome !== 'undefined' && chrome.storage && chrome.storage.local;
}