1.0.0 • Published 3 years ago

textualchange v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

What is this ?

You can combine spaces in textual data with a special character.

Note: Defaults to "-" if second argument is not sent. You can see it in detail in the example below.

Installation

npm install textualchange

Then..

For Example

const change = require("textualchange"), text = "No Explanation Here", specialChar = "+";

console.log(change(text)); console.log(change(text, specialChar)); console.log(change());