mirror of
https://github.com/github/codeql-action.git
synced 2026-01-06 22:50:17 +08:00
Initial commit (from f5274cbdce4ae7c9e4b937dcdf95ac70ae436d5f)
This commit is contained in:
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
|
||||
}
|
||||
Reference in New Issue
Block a user