## 2021-04-08 Poor Mens #Vivide
*Author: @JensLincke*


This was some useful script I used in a workspace to filter another... where to save it for later? Just in my head? 

```javascript
that.value
  .split("\n")
  .filter(ea => ea.match("Topic "))
  .join("\n")
```