Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@moloch--
Created December 18, 2016 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moloch--/ddec88363c53c6cd59306bea215718f0 to your computer and use it in GitHub Desktop.
Save moloch--/ddec88363c53c6cd59306bea215718f0 to your computer and use it in GitHub Desktop.
private _compareArrays(a: Array<any>, b: Array<any>) {
if (a.length !== b.length) {
return false;
} else {
for (let index = 0; index < a.length; ++index) {
if (a[index] !== b[index]) {
return false;
}
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment