Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/is-binary-path/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/is-binary-path/index.d.ts

/**
Check if a file path is a binary file.

@example
```
import isBinaryPath = require('is-binary-path');

isBinaryPath('source/unicorn.png');
//=> true

isBinaryPath('source/unicorn.txt');
//=> false
```
*/
declare function isBinaryPath(filePath: string): boolean;

export = isBinaryPath;