Get the name and version of a OS X release from the Darwin version.
Example:13.2.0
→{name: 'Mavericks', version: '10.9'}
Install
$ npm install --save osx-release
Usage
var os = ;var osxRelease = ; // on an OS X Mavericks system ;//=> {name: 'Mavericks', version: '10.9'} os;//=> 13.2.0// this is the Darwin kernel version ;//=> {name: 'Mavericks', version: '10.9'} ;//=> {name: 'Yosemite', version: '10.10'}
API
osxRelease([release])
release
Type: string
By default the current operating system is used, but you can supply a custom Darwin kernel version, which is the output of os.release()
.
Related
- os-name - Get the name of the current operating system. Example:
macOS Sierra
- macos-version - Get the macOS version of the current system. Example:
10.9.3
- win-release - Get the name of a Windows version from the release number:
5.1.2600
→XP
License
MIT © Sindre Sorhus