(id)
| 123 | * @returns {id is string | number} is i |
| 124 | */ |
| 125 | const isValidId = (id) => { |
| 126 | if (typeof id === "number" || id) { |
| 127 | return true; |
| 128 | } |
| 129 | |
| 130 | return false; |
| 131 | }; |
| 132 | |
| 133 | /** |
| 134 | * Returns string representation of list. |
no outgoing calls
no test coverage detected