We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f768d75 commit 47d6c63Copy full SHA for 47d6c63
licensor
@@ -115,15 +115,12 @@ var licensePath = path.join(cwd, 'LICENSE')
115
116
var wrapText = options.width
117
? function (x) {
118
- return wrap(
119
- x.replace(/\n\n/g, '\n'),
120
- {
121
- width: options.width,
122
- indent: '',
123
- trim: true,
124
- newline: '\n'
125
- }
126
- )
+ return wrap(x, {
+ width: options.width,
+ indent: '',
+ trim: true,
+ newline: '\n'
+ })
127
}
128
: function (x) { return x }
129
0 commit comments