npm install hi-ffalcon

Removes all spaces from a string.
```
$ npm install hi-ffalcon
`js
const tiny = require("hi-ffalcon");
tiny("So much space!");
//=> "Somuchspace!"
tiny(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (
// at
``