You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Semver("1.0", NPM).satisfies("1.0") will return false, while
Semver("1.0", NPM).satisfies("=1.0") will return true.
The one used by NPM states "A leading "=" or "v" character is stripped off and ignored." so I think this is a bug? The docs at https://www.npmjs.com/package/semver also states
"= Equal. If no operator is specified, then equality is assumed, so this operator is optional, but MAY be included."
The text was updated successfully, but these errors were encountered:
Semver("1.0", NPM).satisfies("1.0") will return false, while
Semver("1.0", NPM).satisfies("=1.0") will return true.
The one used by NPM states "A leading "=" or "v" character is stripped off and ignored." so I think this is a bug? The docs at
https://www.npmjs.com/package/semver also states
"= Equal. If no operator is specified, then equality is assumed, so this operator is optional, but MAY be included."
The text was updated successfully, but these errors were encountered: