Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created January 1, 2010 22:16
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 padolsey/267285 to your computer and use it in GitHub Desktop.
Save padolsey/267285 to your computer and use it in GitHub Desktop.
function containsArray3 (outer, inner) {
return !!(
-1 < ('[' + outer.join('][') + ']')
.indexOf('[' + inner.join(',') + ']')
);
}
// quite slow :(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment