UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

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