1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| exports.getPlatformDir = exports.getPlatforms = exports.registerPlatform = void 0;
| const BUILT_IN_PLATFORMS = [
| 'app',
| 'app-plus',
| 'h5',
| 'mp-360',
| 'mp-alipay',
| 'mp-baidu',
| 'mp-jd',
| 'mp-kuaishou',
| 'mp-lark',
| 'mp-qq',
| 'mp-toutiao',
| 'mp-weixin',
| 'quickapp-webview',
| 'quickapp-webview-huawei',
| 'quickapp-webview-union',
| ];
| const platforms = [...BUILT_IN_PLATFORMS];
| function registerPlatform(platform) {
| if (!platforms.includes(platform)) {
| platforms.push(platform);
| }
| }
| exports.registerPlatform = registerPlatform;
| function getPlatforms() {
| return platforms;
| }
| exports.getPlatforms = getPlatforms;
| function getPlatformDir() {
| return process.env.UNI_SUB_PLATFORM || process.env.UNI_PLATFORM;
| }
| exports.getPlatformDir = getPlatformDir;
|
|