(suit, number)
| 1 | var Card = function(suit, number) { |
| 2 | this.suit = suit; |
| 3 | this.number = number; |
| 4 | this.value = `${this.number} ${this.suit}`; |
| 5 | }; |
| 6 | |
| 7 | var Deck = function() { |
| 8 | this.cards = []; |
nothing calls this directly
no outgoing calls
no test coverage detected