(node: MinimalFillsMixin)
| 68 | getImageFills(node).length > 0; |
| 69 | |
| 70 | export const nodeHasMultipleFills = (node: MinimalFillsMixin) => |
| 71 | node.fills instanceof Array && node.fills.length > 1; |
| 72 | |
| 73 | const imageBytesToBase64 = (bytes: Uint8Array): string => { |
| 74 | // Convert Uint8Array to binary string |
nothing calls this directly
no outgoing calls
no test coverage detected