Fix typo a => b
This commit is contained in:
parent
6646707e01
commit
5633e3c4f6
@ -245,7 +245,7 @@ export function isImmutable(node: Object): boolean {
|
||||
*/
|
||||
|
||||
export function isNodesEquivalent(a, b) {
|
||||
if (typeof a !== "object" || typeof a !== "object" || a == null || b == null) {
|
||||
if (typeof a !== "object" || typeof b !== "object" || a == null || b == null) {
|
||||
return a === b;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user