Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
is-gif
/
index.js
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'
;
};