JSPM

semver-truncate

1.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3061167
  • Score
    100M100P100Q206267F
  • License MIT

Truncate a semver version: 1.2.3 → 1.2.0

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 Build Status

Truncate a semver version: 1.2.31.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