Get bundle identifier from a bundle name (macOS): `Safari` → `com.apple.Safari`
npm install @marionebl/bundle-id> Get bundle identifier from a bundle name (macOS): Safari → com.apple.Safari
```
$ npm install --save bundle-id
`js
const bundleId = require('bundle-id');
bundleId('Safari').then(id => {
console.log(id);
//=> 'com.apple.Safari'
});
``
- bundle-id-cli - CLI for this module
- bundle-name - Get bundle name from a bundle identifier
MIT © Sindre Sorhus