CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.js8 linesDownload Raw Back to is-binary-path
1'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());8