install-nix-action/node_modules/prompts/lib/util/lines.js

12 lines
301 B
JavaScript
Raw Normal View History

2020-02-24 12:29:22 +00:00
'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);
};