Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
290 B
18 lines
290 B
2 years ago
|
/**
|
||
|
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;
|