mirror of
https://github.com/actions/setup-go.git
synced 2025-07-28 09:28:29 +02:00
Fix.
This commit is contained in:
parent
ffce9ce43f
commit
a966e84ff9
6749 changed files with 937822 additions and 460 deletions
9
node_modules/array-equal/index.js
generated
vendored
Normal file
9
node_modules/array-equal/index.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
module.exports = function equal(arr1, arr2) {
|
||||
var length = arr1.length
|
||||
if (length !== arr2.length) return false
|
||||
for (var i = 0; i < length; i++)
|
||||
if (arr1[i] !== arr2[i])
|
||||
return false
|
||||
return true
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue