(coordinates: AnnotationBbox)
| 16 | * Format annotation location for display. AnnotationBBox: [left, top, width, height] |
| 17 | */ |
| 18 | export function formatBBox(coordinates: AnnotationBbox): string { |
| 19 | return `(left:${coordinates[0]}, top:${coordinates[1]}, width:${coordinates[2]}, height:${coordinates[3]})`; |
| 20 | } |
no outgoing calls
no test coverage detected