@azure/storage-blob
Version:
Microsoft Azure Storage SDK for JavaScript - Blob
16 lines • 415 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export function arraysEqual(a, b) {
if (a === b)
return true;
if (a == null || b == null)
return false;
if (a.length !== b.length)
return false;
for (let i = 0; i < a.length; ++i) {
if (a[i] !== b[i])
return false;
}
return true;
}
//# sourceMappingURL=utils.common.js.map