mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10: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);
|
|
}; |