unstampIndexHtml function

String unstampIndexHtml(
  1. String html
)

Returns html (an index.html) with the meta tag and cache-busting removed — the form used for content hashing.

Implementation

String unstampIndexHtml(String html) =>
    _outsideComments(removeBuildIdMeta(html), removeCacheBust);