( offset: number, limit: number, top: number, bottom: number )
| 47 | */ |
| 48 | |
| 49 | export const contains = ( |
| 50 | offset: number, |
| 51 | limit: number, |
| 52 | top: number, |
| 53 | bottom: number |
| 54 | ): boolean => (top >= offset && bottom < offset + limit) || bottom - top === 0; |
nothing calls this directly
no outgoing calls
no test coverage detected