mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 12:21:07 +07:00
9 lines
292 B
JavaScript
9 lines
292 B
JavaScript
'use strict';
|
|
|
|
const strip = require('./strip');
|
|
|
|
module.exports = function (msg, perLine = process.stdout.columns) {
|
|
let lines = String(strip(msg) || '').split(/\r?\n/);
|
|
if (!perLine) return lines.length;
|
|
return lines.map(l => Math.ceil(l.length / perLine)).reduce((a, b) => a + b);
|
|
}; |