blob: ef7548c8303298520e15e7e680bf99aee21f787a [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2const path = require('path');
3const binaryExtensions = require('binary-extensions');
4
5const extensions = new Set(binaryExtensions);
6
7module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());