Package Exports
- semver-truncate
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (semver-truncate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
semver-truncate 
Truncate a semver version:
1.2.3
→1.2.0
Install
$ npm install --save semver-truncate
Usage
const semverTruncate = require('semver-truncate');
semverTruncate('1.2.3-foo', 'patch');
//=> '1.2.3'
semverTruncate('1.2.3', 'minor');
//=> '1.2.0'
semverTruncate('1.2.3', 'major');
//=> '1.0.0'
API
truncateSemver(version, type)
version
Type: string
Semver version.
type
Type: string
Values: patch
minor
major
Version type to truncate to.
License
MIT © Sindre Sorhus