Files
screenshot-tools/node_modules/is-binary-path/index.js
Frank John Begornia c926590e1d first commit
2025-12-23 01:51:15 +08:00

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());