• File: index.d.ts
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/ip/lib/index.d.ts
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 290 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
/**
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;