npm module publishing test repo.
Source: How to make a beautiful tiny npm package and publish it <3
Removes all spaces from a string.
$ npm install @manuelpuchta/tiny
const tiny = require("@manuelpuchta/tiny");
tiny("So much space!");
//=> "Somuchspace!"
tiny(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (<anonymous>:2:41)
// at <anonymous>:1:1