Skip to content

Instantly share code, notes, and snippets.

View edilsonborges's full-sized avatar

Edilson Borges edilsonborges

  • Agrodefesa
  • Goiânia - Goiás - Brazil
  • 04:52 (UTC -03:00)
View GitHub Profile
@edilsonborges
edilsonborges / privacy-policy.html
Created February 11, 2026 03:36
Niver - Politica de Privacidade
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Niver - Politica de Privacidade</title>
<style>
* {
margin: 0;
padding: 0;
const regex = /([$][a-z]*)[_]([a-z])([a-z]*)/g;
const str = `\$bo_ativo`;
const subst = `$1\U$2\E$3`;
// The substituted value will be contained in the result variable
const result = str.replace(regex, subst);
console.log('Substitution result: ', result);