1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-12 14:04:09 +02:00

Initial pass

This commit is contained in:
Danny McCormick 2019-06-26 21:12:00 -04:00
commit 39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions

18
node_modules/prompts/lib/util/clear.js generated vendored Normal file
View file

@ -0,0 +1,18 @@
'use strict';
const strip = require('./strip');
const { erase, cursor } = require('sisteransi');
const width = str => [...strip(str)].length;
module.exports = function(prompt, perLine = process.stdout.columns) {
if (!perLine) return erase.line + cursor.to(0);
let rows = 0;
const lines = prompt.split(/\r?\n/);
for (let line of lines) {
rows += 1 + Math.floor(Math.max(width(line) - 1, 0) / perLine);
}
return (erase.line + cursor.prevLine()).repeat(rows - 1) + erase.line + cursor.to(0);
};