Binding.equal()
Creates a new binding that returns true if all combined binding values are equal.
static equal(
...sources: Array<undefined | null | string | Binding>
): Binding<boolean>;
Summary
Returns true only when all bindings are bound and all values are strictly equal to the first. Returns true if no valid sources remain after filtering.
Parameters
- sources — Two or more instances of Binding or source paths; undefined/null values are filtered out
Return value
A new Binding object
Related
class Binding
A class that represents a property binding.
