WebAdmin File Manager
Linux 5.15.0-164-generic · PHP 8.2.27

View: index.js

Edit Download Back
import stringWidth from 'string-width';

export default function widestLine(string) {
	let lineWidth = 0;

	for (const line of string.split('\n')) {
		lineWidth = Math.max(lineWidth, stringWidth(line));
	}

	return lineWidth;
}
Size: 228 BMIME: text/x-javaLines: 11

Rename Item