I'm Dreaming of White Spaces

This commit is contained in:
Jeff Parsons 2016-12-18 15:05:41 -08:00 committed by Jeff Parsons
commit 772bd39543
9 changed files with 27 additions and 27 deletions

View file

@ -1081,7 +1081,7 @@ if (!Array.prototype.indexOf) {
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
*/
if (!Array.isArray) {
Array.isArray = function (arg) {
Array.isArray = function(arg) {
return Object.prototype.toString.call(arg) === '[object Array]';
};
}