Files
WeihnachtsKalenderMelly/node_modules/is-gif/index.js
2021-11-23 17:56:26 +01:00

11 lines
163 B
JavaScript

'use strict';
module.exports = function (buf) {
if (!buf || buf.length < 3) {
return false;
}
return buf[0] === 71 &&
buf[1] === 73 &&
buf[2] === 70;
};