feat: refactoring project

This commit is contained in:
Carlos
2024-11-23 14:56:07 -05:00
parent f0c2a50c18
commit 1c6db5818d
2351 changed files with 39323 additions and 60326 deletions

2
node_modules/browserslist/parse.js generated vendored
View File

@@ -9,7 +9,7 @@ function flatten(array) {
}
function find(string, predicate) {
for (var n = 1, max = string.length; n <= max; n++) {
for (var max = string.length, n = 1; n <= max; n++) {
var parsed = string.substr(-n, n)
if (predicate(parsed, n, max)) {
return string.slice(0, -n)