Skip to content

Instantly share code, notes, and snippets.

@stoimen
Created June 17, 2015 20:14
Show Gist options
  • Save stoimen/db40c9946317f0c57fe6 to your computer and use it in GitHub Desktop.
Save stoimen/db40c9946317f0c57fe6 to your computer and use it in GitHub Desktop.
(function(root) {
function sequential(list, item) {
for (var i = 0, l = list.length; i < l; i++) {
if (list[i] == item) {
return i;
}
}
return -1;
};
root.sequential = sequential;
})(typeof window === 'undefined'? module.exports: window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment