Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 946 Bytes

readme.md

File metadata and controls

33 lines (20 loc) · 946 Bytes

bundle-id

Get bundle identifier from a bundle name (macOS): Safaricom.apple.Safari

Install

$ npm install bundle-id

Usage

import {bundleId} from 'bundle-id';

console.log(await bundleId('Safari'));
//=> 'com.apple.Safari'

API

bundleId()

Returns a Promise<string> with the bundle ID.

bundleIdSync()

Returns a string with the bundle ID.

Related