UNPKG

auspice

Version:

Web app for visualizing pathogen evolution

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'; };