📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 14:16:24
📂
/ (Root)
/
lib
/
node_modules
/
npm
/
node_modules
/
widest-line
📍 /lib/node_modules/npm/node_modules/widest-line
🔄 Refresh
✏️
Editing: index.js
Read Only
'use strict'; const stringWidth = require('string-width'); module.exports = input => { let max = 0; for (const s of input.split('\n')) max = Math.max(max, stringWidth(s)); return max; };
💾 Save Changes
❌ Cancel