Skip to content

Commit

Permalink
Remove unused export
Browse files Browse the repository at this point in the history
  • Loading branch information
asgerf committed Nov 27, 2024
1 parent 1ab5002 commit 13e78a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function addOptionals(a: Optional<number>, b: Optional<number>) {
/**
* Returns a "fingerprint" from the given name, which is used to group together similar names.
*/
export function getNameFingerprint(name: string, renamings: Renaming[]) {
function getNameFingerprint(name: string, renamings: Renaming[]) {
for (const { patternRegexp, replacement } of renamings) {
if (patternRegexp != null) {
name = name.replace(patternRegexp, replacement);
Expand Down

0 comments on commit 13e78a6

Please sign in to comment.