blob: 962ce8bd5a4ead34f9a9afd4a8e7e6b94bcc6d4a [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2const fileType = require('file-type');
3
4module.exports = input => {
5 const match = fileType(input);
6
7 if (!match) {
8 return false;
9 }
10
11 return match.ext === 'gif';
12};