Eliminate if-statement (#3555)
This commit is contained in:
@@ -126,11 +126,7 @@ export default (tokens: Node[], mentionedRemoteUsers: INote['mentionedRemoteUser
|
|||||||
const nodes = (token.props.text as string).split('\n').map(x => doc.createTextNode(x));
|
const nodes = (token.props.text as string).split('\n').map(x => doc.createTextNode(x));
|
||||||
|
|
||||||
for (const x of intersperse('br', nodes)) {
|
for (const x of intersperse('br', nodes)) {
|
||||||
if (x === 'br') {
|
el.appendChild(x === 'br' ? doc.createElement('br') : x);
|
||||||
el.appendChild(doc.createElement('br'));
|
|
||||||
} else {
|
|
||||||
el.appendChild(x);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return el;
|
return el;
|
||||||
|
Reference in New Issue
Block a user