Removes all spaces from a string
npm install @jeffstern/jeffsnpm@jeffstern/jeffsnpm
!npm
I'm following a tutorial to make an npm package, but maybe I'll make a better one soon
```
$ npm install @jeffstern/jeffsnpm
`js
const removeSpaces = require("@jeffstern/jeffsnpm");
removeSpaces("So much space!");
//=> "Somuchspace!"
removeSpaces(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (
// at
``