522d5701acf35bc615cc1b0bcc96f16fd2f34d6e70154fcecd0deeee2d40abb347e242dd0741324af64b0f15b7d9dd4295d42fe782b1ffffaca45ee348428e 541 B

12345678910111213141516171819202122232425
  1. # binary-extensions
  2. > List of binary file extensions
  3. The list is just a [JSON file](binary-extensions.json) and can be used anywhere.
  4. ## Install
  5. ```sh
  6. npm install binary-extensions
  7. ```
  8. ## Usage
  9. ```js
  10. const binaryExtensions = require('binary-extensions');
  11. console.log(binaryExtensions);
  12. //=> ['3ds', '3g2', …]
  13. ```
  14. ## Related
  15. - [is-binary-path](https://github.com/sindresorhus/is-binary-path) - Check if a filepath is a binary file
  16. - [text-extensions](https://github.com/sindresorhus/text-extensions) - List of text file extensions