* @returns {?string} The first key of the Hashtable, or undefined if empty.
()
| 648 | * @returns {?string} The first key of the Hashtable, or undefined if empty. |
| 649 | */ |
| 650 | firstKey() { |
| 651 | for (var k in this.items) { |
| 652 | if (this.items.hasOwnProperty(k)) { |
| 653 | return k; |
| 654 | } |
| 655 | } |
| 656 | |
| 657 | return null; |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * @param {Array<string>} result |
no outgoing calls
no test coverage detected