5 lines
118 B
TypeScript
5 lines
118 B
TypeScript
/** 小程序端恒为微信环境,避免引入 H5 JSSDK 门面 */
|
|
export function isWechatEnv() {
|
|
return true;
|
|
}
|