Preview:```ts
function either(/* variadic */) {
if (arguments.length === 0) {
return
}
return Array.prototype.concat.apply([], arguments)
}```
You can choose specific lines to embed by selecting them before copying the link.