mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 05:29:13 +08:00
17 lines
290 B
Text
17 lines
290 B
Text
/**
|
|
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;
|