Hacked By AnonymousFox

Current Path : /usr/lib/node_modules/npm/node_modules/widest-line/
Upload File :
Current File : //usr/lib/node_modules/npm/node_modules/widest-line/index.js

'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;
};

Hacked By AnonymousFox1.0, Coded By AnonymousFox