Difference in output between 2.1.0 and 3.0.1 #24
coreyfarrell posted onGitHub
I have the following minimal test case:
'use strict'
const wrap = require('wrap-ansi');
const chalk = require('chalk');
const srcString = chalk.blue(' 1 2 ');
console.log('"' + wrap(srcString, 20, {hard: true}) + '"');
console.log('"' + wrap(srcString, 20, {hard: true, trim: false}) + '"');
Note that srcString has 2 spaces before, between and after the numbers.
Against v2.1.0:
The test prints the same output twice (trim: false
is ignored). The output is "1 2 "
- both spaces before the '1' were removed. If color terminal is disabled the spaces after the '2' are also removed.
Against v3.0.1: The first line prints with a single space between the numbers, and if color is enabled a single space after the numbers. The second line prints the original string if color is enabled, if color is disabled it prints an extra space before the string (3 spaces total before the '1').
This was found when trying to update cliui to use v3.0.1. I don't know what the correct behavior should be.