Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 329 Bytes

removeWhiteSpaces.md

File metadata and controls

19 lines (11 loc) · 329 Bytes

removeWhiteSpaces

Removes all spaces characters from a string

Arguments

  • value: String: value to be format

Returns

  • string: String: A string without white spaces

Usage

import { removeWhiteSpaces } from '@platformbuilders/helpers'

removeWhiteSpaces(' hel lo wor ld '); // return 'helloworld'