(array)
| 57 | } |
| 58 | |
| 59 | function isPack(array) { |
| 60 | const firstItem = array[0]; |
| 61 | return array.every((item) => item === firstItem); |
| 62 | } |
| 63 | |
| 64 | function isSet(array) { |
| 65 | const deduped = new Set(array); |
no test coverage detected
searching dependent graphs…