Removes all spaces from a string and other string functions are under development
npm install playstring
1) playstring = Removes all spaces from a string.
2) titleCase = A string which need to be display as a title
3) spaceCase = Function for deviding word with dash "-"
```
$ npm install playstring
`js
const { playstring } = require("playstring");
playstring("Hello world space!");
// output => "Helloworldspace!"
playstring(1337);
//=> Uncaught TypeError: playstring wants a string!
// at playstring (
// at
`
js
import { titleCase } from "playstring";
titleCase("aPropertyNameWhichNeedsToBeDisplayedAsATitle");
// output => "A Property Name Which Needs To Be Displayed As A Title"`Function for deviding word with dash "-"
`js
import { spaceCase } from "playstring";
spaceCase("play string");
// output => "play-string"
spaceCase("playString");
// output => "play-string"
``