UNPKG

@azure/storage-blob

Version:
16 lines 415 B
// 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