blob: 962ce8bd5a4ead34f9a9afd4a8e7e6b94bcc6d4a [file] [log] [blame]
'use strict';
const fileType = require('file-type');
module.exports = input => {
const match = fileType(input);
if (!match) {
return false;
}
return match.ext === 'gif';
};