Urara-Blog/node_modules/.pnpm-store/v3/files/87/5c24b3ccec1d59da906f8a2d11bf91849bf51eef6b39584ea906cd5843a776279b6b881efe9f72858a08331f1d6891e5035915a92100964f61faca12226b4e
2022-08-14 01:14:53 +08:00

17 lines
467 B
Text

// Note: this is the semver.org version of the spec that it implements
// Not necessarily the package version of this code.
const SEMVER_SPEC_VERSION = '2.0.0'
const MAX_LENGTH = 256
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
/* istanbul ignore next */ 9007199254740991
// Max safe segment length for coercion.
const MAX_SAFE_COMPONENT_LENGTH = 16
module.exports = {
SEMVER_SPEC_VERSION,
MAX_LENGTH,
MAX_SAFE_INTEGER,
MAX_SAFE_COMPONENT_LENGTH,
}