@derkrisz/removewhitespace
v1.0.2
Published
Removes whitespace from strings.
Readme
@derkrisz/removewhitespace
Removes all spaces from a string.
Install
$ npm install @derkrisz/removewhitespaceUsage
const removewhitespace = require("@derkrisz/removewhitespace");
removewhitespace("Remove whitespace from this!");
//=> "Removewhitespacefromthis!"
removewhitespace(1234);
//=> TypeError: Provide a string!