1.1.0 • Published 5 years ago
@ynotrusso/tiny v1.1.0
Tiny
Removes all spaces from a string
Install
$ npm install @ynotrusso/tiny
Usage
const tiny = require("@ynotrusso/tiny");
tiny("So much space!");
//> "Somuchspace!"
tiny(123);
//> Uncaught TypeError: Tiny wants a string!
// at tiny (<anonymous>:2:41)
// at <anonymous>:1:1