This commit is contained in:
linyuchen
2024-04-15 00:09:08 +08:00
parent b2061347a5
commit 14e6c6d9a6
218 changed files with 8465 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
import os from 'node:os';
import path from 'node:path';
export const systemPlatform = os.platform();
export const systemVersion = os.release();
export const hostname = os.hostname();
const homeDir = os.homedir();
export const downloadsPath = path.join(homeDir, 'Downloads');
export const systemName = os.type();