README
tiny
Removes all spaces from a string.
Install
$ npm install @vpicone/tiny
Usage
const tiny = require("@bamblehorse/tiny");
tiny("So much space!");
//=> "Somuchspace!"
tiny(1337);
//=> Uncaught TypeError: Tiny needs a string!
Removes all spaces from a string
<script type="module">
import vpiconeTiny from 'https://cdn.skypack.dev/@vpicone/tiny';
</script>
Removes all spaces from a string.
$ npm install @vpicone/tiny
const tiny = require("@bamblehorse/tiny");
tiny("So much space!");
//=> "Somuchspace!"
tiny(1337);
//=> Uncaught TypeError: Tiny needs a string!