Explorar o código

Change variable name to be verbose in `Array.from` polyfill

dom111 %!s(int64=6) %!d(string=hai) anos
pai
achega
c39898903b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/webdav.js

+ 1 - 1
src/webdav.js

@@ -1,7 +1,7 @@
 (function($) {
     if (!('from' in Array)) {
         Array.from = function(arrayLike) {
-            return [].slice.call(aryLike);
+            return [].slice.call(arrayLike);
         };
     }