cat-ascii-faces = function () { return cats[Math.floor(Math.random() * cats.length)] }
n/a
catStream = function () { return streamify(cats) }
...
"ฅ(⌯͒•̩̩̩́ ˑ̫ •̩̩̩̀⌯͒)ฅ",
"₍˄·͈༝·͈˄*₎◞ ̑̑",
"ଲ( ⓛ ω ⓛ *)ଲ",
"=^._.^= ∫",
"ଲ(⁃̗̀̂❍⃓ˑ̫❍⃓⁃̠́̂)ଲ"
]
cats.catStream() // a readable stream of all cats
e.g. cats.catStream().pipe(process.stdout)
```
Simple examples included in test.js
...