removeBuildIdMeta function

String removeBuildIdMeta(
  1. String html
)

Removes every build-ID meta tag (and its line) from html.

Implementation

String removeBuildIdMeta(String html) => html.replaceAll(_metaTag, '');