Urara-Blog/node_modules/.pnpm-store/v3/files/ee/098d7145efddcb7b91496dd48bc9edbc5e4e7b91b07ba5fc609212baf7a5edc80cec491074c9ea4c4b5dd8b418a2cd8586225bcf1f28171cb109e6b083e6f6
2022-08-14 01:14:53 +08:00

17 lines
468 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
}