Procházet zdrojové kódy

Update Stack.prototype.Push

Updated to allow for pushing of arrays. The explodes the array ensuring
the stack remains flat.
ApisNecros před 1 rokem
rodič
revize
8bdd7821b7
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  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