1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-27 08:31:20 +02:00

tighten up arrayEquals parameters

This commit is contained in:
Chen-I Lim 2020-12-07 12:13:20 -08:00
parent f631d89d07
commit 55a3685263

View File

@ -163,7 +163,7 @@ class Utils {
// Arrays
static arraysEqual(a: any[], b: any[]): boolean {
static arraysEqual(a: readonly any[], b: readonly any[]): boolean {
if (a === b) {
return true
}