@azure/storage-blob
Version:
Microsoft Azure Storage SDK for JavaScript - Blob
19 lines • 520 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.arraysEqual = arraysEqual;
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