Explorar el Código

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

dom111 hace 6 años
padre
commit
c39898903b
Se han modificado 1 ficheros con 1 adiciones y 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);
         };
     }