equal
ts
const equal: OperatorFn;Defined in: operations.ts:247
Checks if all argument are equal.
Remarks
Evaluated sequentially: a === b === c is evaluated as (a === b) && (b === c)
Param
Primitive arguments
Returns
true if all comparisons are satisfied, otherwise false
Since
1.0.0
Author
Simon Kovtyk