Skip to content

Instantly share code, notes, and snippets.

@DeadAlready
Created June 7, 2016 12:41
Show Gist options
  • Save DeadAlready/1da8ca4261ed9a9b329b1b5fcada688b to your computer and use it in GitHub Desktop.
Save DeadAlready/1da8ca4261ed9a9b329b1b5fcada688b to your computer and use it in GitHub Desktop.
isarray
var toString = {}.toString;
module.exports = Array.isArray || function (arr) {
return toString.call(arr) == '[object Array]';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment