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
The above condition does not check an input array's length. All of these inputs [], [1], [1,2] and [1,2,3] are valid in the current implementation. Only [1,2] should pass the validation and other [], [1], [1,2,3] should fail the validation.
The text was updated successfully, but these errors were encountered:
Here is the code that validates
firstEvaluatedKey
andlastEvaluatedKey
.The above condition does not check an input array's length. All of these inputs
[]
,[1]
,[1,2]
and[1,2,3]
are valid in the current implementation. Only[1,2]
should pass the validation and other[]
,[1]
,[1,2,3]
should fail the validation.The text was updated successfully, but these errors were encountered: