PATH:
opt
/
alt
/
alt-nodejs12
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
widest-line
'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; };
[-] package.json
[edit]
[+]
..
[-] readme.md
[edit]
[-] license
[edit]
[-] index.js
[edit]