Skip to content

Instantly share code, notes, and snippets.

View dgp1130's full-sized avatar
💭
🐶

Douglas Parker dgp1130

💭
🐶
View GitHub Profile
@dgp1130
dgp1130 / README.md
Created July 25, 2024 06:02
Browser Line Length Metrics

Browser Line Length Metrics

This snippet computes the average line length on a web page based on visual layout and line wrapping. It's basically doing:

const lines = pageText.split('\n');
const lineLength = lines.map((line) => line.length);
average(lineLength);