(seq, ...args)
| 142996 | return sequence(seq).indexOf(...args); |
| 142997 | } |
| 142998 | function lastindexof(seq, ...args) { |
| 142999 | return sequence(seq).lastIndexOf(...args); |
| 143000 | } |
| 143001 | function slice(seq, ...args) { |
| 143002 | return sequence(seq).slice(...args); |
| 143003 | } |
nothing calls this directly
no test coverage detected