Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

galileo-screen

articice4.8kUNLICENSED1.0.5

Screen utilities for Galileo terminal

Travelport, Ukraine, Galileo, terminal, merge screens, screen

readme

galileo-screen

usage example

var screen = require('galileo-screen');

response = screen.wrapLines(response); //if your output is not wrapped, try A20NOVIEVCPH (availability screen)

if (previous_response) {
    response = screen.mergeResponse(previous_response, response);
}

if (screen.hasMore(response)) {
    //execute next MD somehow
} else {
    callback(null, response);
}