提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
821 B

  1. # bundle-name
  2. > Get [bundle name](https://developer.apple.com/library/Mac/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/plist/info/CFBundleName) from a [bundle identifier](https://developer.apple.com/library/Mac/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/plist/info/CFBundleIdentifier) (macOS): `com.apple.Safari` → `Safari`
  3. ## Install
  4. ```sh
  5. npm install bundle-name
  6. ```
  7. ## Usage
  8. ```js
  9. import bundleName from 'bundle-name';
  10. console.log(await bundleName('com.apple.Safari'));
  11. //=> 'Safari'
  12. ```
  13. ## Related
  14. - [bundle-name-cli](https://github.com/sindresorhus/bundle-name-cli) - CLI for this module
  15. - [bundle-id](https://github.com/sindresorhus/bundle-id) - Get bundle identifier from a bundle name