mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 05:25:36 +07:00
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
'use strict';
|
|
const path = require('path');
|
|
const binaryExtensions = require('binary-extensions');
|
|
|
|
const extensions = new Set(binaryExtensions);
|
|
|
|
module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());
|