(length)
| 3 | } |
| 4 | |
| 5 | function empty(length) { |
| 6 | return !(length > 0); |
| 7 | } |
| 8 | |
| 9 | function arrayify(values) { |
| 10 | return typeof values !== "object" || "length" in values ? values : Array.from(values); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…