[READ-ONLY] Mirror of https://github.com/tynanpurdy/real-font-size. Tiny calculator that tells you the real dimensions of text, not its bounding box tynanpurdy.github.io/real-font-size/
0

Configure Feed

Select the types of activity you want to include in your feed.

prettier clearCanvas

+2 -2
+2 -2
index.js
··· 40 40 } 41 41 42 42 function clearCanvas(canvas) { 43 - const ctx = canvas.getContext('2d'); 43 + const ctx = canvas.getContext("2d"); 44 44 ctx.clearRect(0, 0, canvas.width, canvas.height); 45 - return ctx 45 + return ctx; 46 46 } 47 47 48 48 function drawDiagram(font = new Font(), testString = "Apd", canvas = diagram) {