remove-extra-spaces
v1.0.3
Published
npm package uses for object and plain string trim
Downloads
2
Maintainers
Readme
remove-extra-spaces
if you need to remove extra spaces from object properties and string variables you can use this package
Usage
//objectTrim function using
let object = {
key: ' hi xD ',
key2: {
key: 'hi xD',
key2: {
key: 'hi xD'
}
}
}
object = objectTrim(object)
console.log(object.key2.key2.key) //hi xD
//stringTrim function using
let string = ' hi xD '
string = stringTrim(string)
console.log(string)//hi xD