Skip to content

Instantly share code, notes, and snippets.

@mde
Created July 3, 2010 01:06
Show Gist options
  • Save mde/462157 to your computer and use it in GitHub Desktop.
Save mde/462157 to your computer and use it in GitHub Desktop.
var isArray = function (obj) {
return obj &&
typeof obj === 'object' &&
typeof obj.length === 'number' &&
typeof obj.splice === 'function' &&
!(obj.propertyIsEnumerable('length'));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment