mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-26 02:18:09 +00:00
9 lines
No EOL
292 B
JavaScript
9 lines
No EOL
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);
|
|
}; |