mobbdev 0.0.96 → 0.0.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3632,6 +3632,8 @@ var getIssueType = (issueType) => {
|
|
|
3632
3632
|
return "Insecure Cookie";
|
|
3633
3633
|
case "TRUST_BOUNDARY_VIOLATION" /* TrustBoundaryViolation */:
|
|
3634
3634
|
return "Trust Boundary Violation";
|
|
3635
|
+
case "MISSING_EQUALS_OR_HASHCODE" /* MissingEqualsOrHashcode */:
|
|
3636
|
+
return "Missing equals or hashcode method";
|
|
3635
3637
|
default: {
|
|
3636
3638
|
return issueType ? issueType.replaceAll("_", " ") : "Other";
|
|
3637
3639
|
}
|