Skip to content

Instantly share code, notes, and snippets.

@amarbalu
Last active April 10, 2022 09:56
Show Gist options
  • Save amarbalu/822c4a3c3124a793e5b2f031fc26b398 to your computer and use it in GitHub Desktop.
Save amarbalu/822c4a3c3124a793e5b2f031fc26b398 to your computer and use it in GitHub Desktop.
export const canUseWebp = headers => {
//headers will be passed as an input
const { accept: header = '' } = headers || {};
// accept is denoted as header
let useWebp = false;
if (header && header.indexOf('image/webp') !== -1) {
// Server side rendering
useWebp = true;
}
return useWebp;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment