export function isEmpty()

in src/shapes/shapes.ts [168:170]


    export function isEmpty(rect: IRect): boolean {
        return rect === undefined || rect === null || (rect.width === 0 && rect.height === 0);
    }