Skip to content

Commit 8f22e48

Browse files
committed
formatting
1 parent 0aaa70c commit 8f22e48

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/ohm-js/test/test-semantics.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,10 @@ test('asIteration', t => {
825825
return this.sourceString;
826826
},
827827
manyLetters(letters) {
828-
return letters.asIteration().children.map(c => c.value).join('');
828+
return letters
829+
.asIteration()
830+
.children.map(c => c.value)
831+
.join('');
829832
},
830833
});
831834
t.is(s(g.match('a, b, c')).value, 'abc', 'one nonempty, one empty');

0 commit comments

Comments
 (0)