mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
server-ts: Implement review comments
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import crypto = require('crypto');
|
||||
import log = require('../log');
|
||||
|
||||
function arraysIdentical(a: Buffer, b: Buffer) {
|
||||
function arraysIdentical(a: any[] | Buffer, b: any[] | Buffer) {
|
||||
let i = a.length;
|
||||
if (i !== b.length) return false;
|
||||
while (i--) {
|
||||
|
||||
Reference in New Issue
Block a user