Ver código fonte

Add an error throw for popping empty stack

ApisNecros 1 ano atrás
pai
commit
541bd96c27
1 arquivos alterados com 4 adições e 1 exclusões
  1. 4 1
      starfish.js

+ 4 - 1
starfish.js

@@ -555,7 +555,10 @@ class Stack {
      * @returns {*}
      */
     Pop() {
-        return this.stack.pop();
+        const value = this.stack.pop();
+        if(value == undefined){ throw new Error(); }
+
+        return value;
     }
 
     /**