lnked/react-starter

View on GitHub
src/helpers/utils/remove-spaces.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const removeSpaces = (str: string): string =>
  str && str.replace(/\s/g, '')