Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- /**
- 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;
|