pull/428/merge
nightwing 2017-06-17 04:30:12 +04:00
rodzic 974fa03d65
commit 06d0e7d1c4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -372,7 +372,7 @@ define(function(require, exports, module) {
var typeB = typeof b;
if (typeA != typeB) return false;
if (!a || typeA !== "object")
return a == b;
return a === b;
if (Array.isArray(a)) {
if (!Array.isArray(b)) return false;
if (a.length != b.length) return false;