source: frontend/node_modules/binary-extensions/readme.md

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 541 bytes
Line 
1# binary-extensions
2
3> List of binary file extensions
4
5The list is just a [JSON file](binary-extensions.json) and can be used anywhere.
6
7## Install
8
9```sh
10npm install binary-extensions
11```
12
13## Usage
14
15```js
16const binaryExtensions = require('binary-extensions');
17
18console.log(binaryExtensions);
19//=> ['3ds', '3g2', …]
20```
21
22## Related
23
24- [is-binary-path](https://github.com/sindresorhus/is-binary-path) - Check if a filepath is a binary file
25- [text-extensions](https://github.com/sindresorhus/text-extensions) - List of text file extensions
Note: See TracBrowser for help on using the repository browser.