"native" to "builtin" (#788)

This commit is contained in:
Jake Archibald
2020-07-30 14:43:46 +01:00
committed by GitHub
parent 1a26057452
commit ed451e4dfa
6 changed files with 15 additions and 15 deletions

View File

@@ -116,7 +116,7 @@ export async function cacheAdditionalProcessors(cacheName: string, buildAssets:
return createImageBitmap(blob).then(() => true, () => false);
})();
// No point caching the WebP decoder if it's supported natively:
// No point caching the WebP decoder if the browser supports it:
if (supportsWebP) {
toCache = toCache.filter(asset => !/webp[\-_]dec/.test(asset));
}