Sha256: c56c70d00610e14d157c1ed4fc3a2b83d96f7e595b1842ba12f3a84217796eb1
Contents?: true
Size: 228 Bytes
Versions: 33
Compression:
Stored size: 228 Bytes
Contents
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; }
Version data entries
33 entries across 33 versions & 1 rubygems