Skip to content

Instantly share code, notes, and snippets.

@kassiogluten
Last active June 18, 2023 01:15
Show Gist options
  • Save kassiogluten/6fb64532e1d2942a2dc8570181daf0cd to your computer and use it in GitHub Desktop.
Save kassiogluten/6fb64532e1d2942a2dc8570181daf0cd to your computer and use it in GitHub Desktop.
anotacoes
// Verificar ambiente
{process.env.NODE_ENV === "development"}
// Limpar CPF CNPJ PHONE (deixa apenas números)
.replace(/\D/g, "")
// axios params
axios.get('https://www.example.com/search', {
params: {
q: 'axios',
page: 2
}
})
teste segundo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment