CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
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