Buckets:
| import {promisify} from 'node:util'; | |
| import process from 'node:process'; | |
| import {execFile} from 'node:child_process'; | |
| const execFileAsync = promisify(execFile); | |
| export default async function defaultBrowserId() { | |
| if (process.platform !== 'darwin') { | |
| throw new Error('macOS only'); | |
| } | |
| const {stdout} = await execFileAsync('defaults', ['read', 'com.apple.LaunchServices/com.apple.launchservices.secure', 'LSHandlers']); | |
| // `(?!-)` is to prevent matching `LSHandlerRoleAll = "-";`. | |
| const match = /LSHandlerRoleAll = "(?!-)(?<id>[^"]+?)";\s+?LSHandlerURLScheme = (?:http|https);/.exec(stdout); | |
| const browserId = match?.groups.id ?? 'com.apple.Safari'; | |
| // Correct the case for Safari's bundle identifier | |
| if (browserId === 'com.apple.safari') { | |
| return 'com.apple.Safari'; | |
| } | |
| return browserId; | |
| } | |
Xet Storage Details
- Size:
- 807 Bytes
- Xet hash:
- 1f3c06f38289d35f1f3176bd3673e97b09c5d518cdcb9a0a2f5ba4fc585b4c9c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.