Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

12
node_modules/is-gif/index.js generated vendored
View File

@@ -1,12 +1,10 @@
'use strict';
const fileType = require('file-type');
module.exports = input => {
const match = fileType(input);
if (!match) {
module.exports = function (buf) {
if (!buf || buf.length < 3) {
return false;
}
return match.ext === 'gif';
return buf[0] === 71 &&
buf[1] === 73 &&
buf[2] === 70;
};