@windix/npm-tiny
v1.3.0
Published
Derived from https://www.freecodecamp.org/news/how-to-make-a-beautiful-tiny-npm-package-and-publish-it-2881d4307f78/
Downloads
11
Readme
@windix/npm-tiny
Derived from https://www.freecodecamp.org/news/how-to-make-a-beautiful-tiny-npm-package-and-publish-it-2881d4307f78/
Removes all spaces from a string.
Install
$ npm install @windix/npm-tiny
Usage
const tiny = require("@windix/npm-tiny");
tiny('So much space!');
//=> "helloworld"
tiny(123);
//=> Uncaught TypeError: tiny expects a string!