5 lines
61 B
JavaScript
5 lines
61 B
JavaScript
|
|
var s = `a
|
||
|
|
b
|
||
|
|
c`;
|
||
|
|
assert.equal(s, 'a\n b\n c');
|