mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
7 lines
239 B
Text
7 lines
239 B
Text
'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());
|