Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-12-03 18:37:29 +00:00
parent 49f7b34c3d
commit 5261a1223f
1640 changed files with 174830 additions and 182292 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)