remove IntegrityMetadataSet.match()
Some checks failed
test / Node.js v20 (push) Has been cancelled
test / Node.js v22 (push) Has been cancelled
test / Deno (push) Has been cancelled
test / Bun (push) Has been cancelled

This commit is contained in:
Nebel 2024-09-09 22:18:16 +09:00
parent b8f8c3d209
commit b6cb686c37
Signed by: nebel
GPG key ID: 79807D08C6EF6460

View file

@ -147,10 +147,6 @@ export class IntegrityMetadataSet extends Map<
return this.get(hashAlgorithm) ?? new IntegrityMetadata("");
}
match(integrityMetadata: IntegrityMetadataLike): boolean {
return this.strongest.match(integrityMetadata);
}
join(separator = " ") {
return [...this.values()].map(String).join(separator);
}