Commit inicial

This commit is contained in:
2026-05-26 00:59:40 -06:00
commit 46594fbec8
140 changed files with 26127 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
const fs = require('fs');
let content = fs.readFileSync('colaborando.php', 'utf8');
[3, 4, 5, 6].forEach(num => {
let oldStr = ` {
name: 'accionEspecialQuincenal',
value: "Generar ${num} activo sin costo"
}
];`;
let newStr = ` {
name: 'accionEspecialQuincenal',
value: "Generar ${num} activo sin costo"
},
{
name: 'accionEspecialLastUsed',
value: 0
},
{
name: 'accionEspecialPeriodicidad',
value: 2
}
];`;
content = content.replace(oldStr, newStr);
});
fs.writeFileSync('colaborando.php', content);