This message was deleted.
# typescript
s
This message was deleted.
e
Something like:
Copy code
x = str.apply(str => /* parse and split */)
// x is now an Output<[str, str, str]>
a = x.apply(x => x[0])
b = x.apply(x => x[1])
c = x.apply(x => x[2])
?
❤️ 1