Removes spaces in a string
npm install @devniklesh/remove-spaces
Removes all spaces from a string.
```
$ npm install @devniklesh/remove-spaces
`js
const removeSpaces = require("@devniklesh/remove-spaces");
removeSpaces("So much space!");
//=> "Somuchspace!"
removeSpaces(1337);
//=> Uncaught TypeError: Remove spaces package wants a string!
// at tiny (
// at
``