1.0.15 • Published 5 years ago

@extra-version/version.min v1.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Defines a semantic version. :running: :package: :ledger:

This is part of package extra-version.

This is browserified, minified version of @extra-version/version. It is exported as global variable version_Version. CDN: unpkg, jsDelivr.

version.Version([major], [minor], [patch], [prerelease], [buildmetadata]);
// major:         major number (0)
// minor:         minor number (0)
// patch:         patch number (0)
// prerelease:    pre-release (null)
// buildmetadata: build metadata (null)
const version = require('extra-version');

var x = version.Version(1, 2);
x.toString();
// '1.2.0'

var x = version.Version(1, 2, 0);
x.toString();
// '1.2.0'

var x = version.Version(1, 2, 3, null, [4]);
x.toString();
// '1.2.3+4'

references

1.0.15

5 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago