Skip to content

Instantly share code, notes, and snippets.

@brianonn
Created September 13, 2016 15:43
Show Gist options
  • Save brianonn/4ef965a06b9e950d80e4e8b8e4c527f9 to your computer and use it in GitHub Desktop.
Save brianonn/4ef965a06b9e950d80e4e8b8e4c527f9 to your computer and use it in GitHub Desktop.
Array.isArray polyfill
if (!Array.isArray) {
Array.isArray = function(arg) {
return Object.prototype.toString.call(arg) === '[object Array]';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment