You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
191 B
JavaScript

'use strict';
var stringWidth = require('string-width');
module.exports = function (str) {
return Math.max.apply(null, str.split('\n').map(function (x) {
return stringWidth(x);
}));
};