This commit is contained in:
@@ -641,6 +641,10 @@ export default {
|
||||
///////////////////////////////////////////////
|
||||
// Simple array equality comparison
|
||||
// (will NOT work on arrays of objects)
|
||||
// Array order is relevant here as they are not sorted
|
||||
// change of order will equal change of array
|
||||
// as this is required for datatable sortby
|
||||
//
|
||||
isEqualArraysOfPrimitives: function(a, b) {
|
||||
if (a === b) return true;
|
||||
if (a == null || b == null) return false;
|
||||
|
||||
Reference in New Issue
Block a user