Skip to content

Commit

Permalink
core(duplicated-javascript): increase threshold from 1 to 10 KiB (#16368
Browse files Browse the repository at this point in the history
)
  • Loading branch information
connorjclark authored Mar 5, 2025
1 parent a0643e5 commit cc20658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/audits/byte-efficiency/duplicated-javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const UIStrings = {

const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

const IGNORE_THRESHOLD_IN_BYTES = 1024;
const IGNORE_THRESHOLD_IN_BYTES = 1024 * 10;

/**
* @param {string} haystack
Expand Down

0 comments on commit cc20658

Please sign in to comment.