node/tools/node_modules/eslint/node_modules/slice-ansi
Rich Trott 7540f9dbe8 tools: update ESLint to 5.13.0
PR-URL: https://github.com/nodejs/node/pull/25877
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
2019-02-03 16:46:26 -08:00
..
index.js tools: update ESLint to 5.13.0 2019-02-03 16:46:26 -08:00
license tools: move eslint from tools to tools/node_modules 2018-01-11 09:48:05 +01:00
package.json tools: update ESLint to 5.13.0 2019-02-03 16:46:26 -08:00
readme.md tools: update ESLint to 5.13.0 2019-02-03 16:46:26 -08:00

slice-ansi Build Status XO: Linted

Slice a string with ANSI escape codes

Install

$ npm install slice-ansi

Usage

const chalk = require('chalk');
const sliceAnsi = require('slice-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(sliceAnsi(input, 20, 30));

API

sliceAnsi(input, beginSlice, [endSlice])

input

Type: string

String with ANSI escape codes. Like one styled by chalk.

beginSlice

Type: number

Zero-based index at which to begin the slice.

endSlice

Type: number

Zero-based index at which to end the slice.

  • wrap-ansi - Wordwrap a string with ANSI escape codes
  • cli-truncate - Truncate a string to a specific width in the terminal
  • chalk - Terminal string styling done right

Maintainers

License

MIT