We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f5e39d commit da72bd1Copy full SHA for da72bd1
1 file changed
challenges/flatten/flatten.test.js
@@ -9,7 +9,7 @@ const sut = {
9
for (let i = 0; i < lines.length; i++) {
10
const line = lines[i];
11
const key = line.substring(0, line.indexOf(sut.separator));
12
- const count = key.search(/\S/) / 2;
+ const count = key.search(/\S/) / 2;
13
const value = line
14
.substring(line.indexOf(sut.separator) + sut.separator.length)
15
.trim();
0 commit comments