What is binary-extensions?
The binary-extensions npm package provides a list of binary file extensions. This package can be used to check if a file extension is generally considered to be binary. It is useful when handling file uploads, file processing, or any other file-related operations where knowing if a file is binary or text can be crucial.
Check if an extension is binary
This code checks if the 'png' extension is included in the list of binary extensions, indicating that files with this extension are binary.
const binaryExtensions = require('binary-extensions');
if (binaryExtensions.includes('png')) {
console.log('The file extension is binary.');
} else {
console.log('The file extension is not binary.');
}