Removes all spaces characters from a string
value: String
: value to be format
string: String
: A string without white spaces
import { removeWhiteSpaces } from '@platformbuilders/helpers'
removeWhiteSpaces(' hel lo wor ld '); // return 'helloworld'