Explorar el Código

Update Stack.prototype.Push

Updated to allow for pushing of arrays. The explodes the array ensuring
the stack remains flat.
ApisNecros hace 1 año
padre
commit
8bdd7821b7
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      starfish.js

+ 6 - 1
starfish.js

@@ -733,7 +733,12 @@ class Stack {
      * @param {*} newValue 
      */
     Push(newValue) {
-        this.stack.push(newValue);
+        if(Array.isArray(newValue)) {
+            this.stack.push(...newValue);
+        }
+        else {
+            this.stack.push(newValue);
+        }
     }
     /**
      * Wrapper function for Array.prototype.pop