UNPKG

generator-website-starter

Version:

A website generator using semantic markup, SASS, Gulp, Imagemin and Browser-sync

13 lines (9 loc) 182 B
'use strict'; const fileType = require('file-type'); module.exports = input => { const match = fileType(input); if (!match) { return false; } return match.ext === 'gif'; };