Functions
equal
- equal(left: undefined | Readonly<{ message: string; status: ScmInputIssueType }>, right: undefined | Readonly<{ message: string; status: ScmInputIssueType }>): boolean
Parameters
left: undefined | Readonly<{ message: string; status: ScmInputIssueType }>
right: undefined | Readonly<{ message: string; status: ScmInputIssueType }>
Returns boolean
true
if themessage
and thestatus
properties are the same on bothleft
andright
. Or both arguments areundefined
. Otherwise,false
.