wrap-ansi

WebJar for wrap-ansi

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

wrap-ansi
Последняя версия

Последняя версия

7.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

wrap-ansi
WebJar for wrap-ansi
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/chalk/wrap-ansi

Скачать wrap-ansi

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/wrap-ansi/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>wrap-ansi</artifactId>
    <version>7.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/wrap-ansi/
implementation 'org.webjars.npm:wrap-ansi:7.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/wrap-ansi/
implementation ("org.webjars.npm:wrap-ansi:7.0.0")
'org.webjars.npm:wrap-ansi:jar:7.0.0'
<dependency org="org.webjars.npm" name="wrap-ansi" rev="7.0.0">
  <artifact name="wrap-ansi" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='wrap-ansi', version='7.0.0')
)
libraryDependencies += "org.webjars.npm" % "wrap-ansi" % "7.0.0"
[org.webjars.npm/wrap-ansi "7.0.0"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.webjars.npm : ansi-styles jar [4.0.0,5)
org.webjars.npm : string-width jar [4.1.0,5)
org.webjars.npm : strip-ansi jar [6.0.0,7)

Модули Проекта

Данный проект не имеет модулей.

wrap-ansi Build Status Coverage Status

Wordwrap a string with ANSI escape codes

Install

$ npm install wrap-ansi

Usage

const chalk = require('chalk');
const wrapAnsi = require('wrap-ansi');

const input = 'The quick brown ' + chalk.red('fox jumped over ') +
	'the lazy ' + chalk.green('dog and then ran away with the unicorn.');

console.log(wrapAnsi(input, 20));

API

wrapAnsi(string, columns, options?)

Wrap words to the specified column width.

string

Type: string

String with ANSI escape codes. Like one styled by chalk. Newline characters will be normalized to \n.

columns

Type: number

Number of columns to wrap the text to.

options

Type: object

hard

Type: boolean
Default: false

By default the wrap is soft, meaning long words may extend past the column width. Setting this to true will make it hard wrap at the column width.

wordWrap

Type: boolean
Default: true

By default, an attempt is made to split words at spaces, ensuring that they don't extend past the configured columns. If wordWrap is false, each column will instead be completely filled splitting words as necessary.

trim

Type: boolean
Default: true

Whitespace on all lines is removed by default. Set this option to false if you don't want to trim.

Related

  • slice-ansi - Slice a string with ANSI escape codes
  • cli-truncate - Truncate a string to a specific width in the terminal
  • chalk - Terminal string styling done right
  • jsesc - Generate ASCII-only output from Unicode strings. Useful for creating test fixtures.

Maintainers


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
org.webjars.npm

chalk

Terminal string styling done right

Версии библиотеки

Версия
7.0.0
6.2.0
5.1.0
4.0.0
3.0.1
2.1.0
2.0.0
1.0.0