Repository URL to install this package:
|
Version:
1.0.10 ▾
|
import { removeWhitespace } from './removeWhitespace'
export const removeNonAlphabet = (x: string) => {
return removeWhitespace(x).replace(/[^a-zA-Z0-9]+/g, '')
}