Skip to content

Instantly share code, notes, and snippets.

@artemsites
Last active September 16, 2024 18:37
Show Gist options
  • Save artemsites/11d260ae1588f57c516ebcd06c1d57c8 to your computer and use it in GitHub Desktop.
Save artemsites/11d260ae1588f57c516ebcd06c1d57c8 to your computer and use it in GitHub Desktop.
/**
* @version 16.09.2024
* import { getClearPhone } from "/src/utils/regexp.js"
*/
export function getClearPhone(str) {
return str.replace(/[^+0-9]/g, "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment