starwork-uniapp/src/utils/platform.ts
2024-12-31 10:58:07 +08:00

12 lines
271 B
TypeScript

export const platform = __UNI_PLATFORM__
export const isH5 = __UNI_PLATFORM__ === 'h5'
export const isApp = __UNI_PLATFORM__ === 'app'
export const isMp = __UNI_PLATFORM__.startsWith('mp-')
const PLATFORM = {
platform,
isH5,
isApp,
isMp
}
export default PLATFORM