excalidraw/src/element/sizeChecks.ts
2020-01-16 23:16:11 +01:00

5 lines
181 B
TypeScript

import { ExcalidrawElement } from "./types";
export function isInvisiblySmallElement(element: ExcalidrawElement): boolean {
return element.width === 0 && element.height === 0;
}