()
| 290 | let EMPTY_SEQ; |
| 291 | |
| 292 | function emptySequence() { |
| 293 | return EMPTY_SEQ || (EMPTY_SEQ = new ArraySeq([])); |
| 294 | } |
| 295 | |
| 296 | export function keyedSeqFromValue(value) { |
| 297 | const seq = maybeIndexedSeqFromValue(value); |
no outgoing calls
no test coverage detected