persona-community-5/.pnpm-store/v3/files/6f/512e96087c9ec158f16330b331377c636a7b841b048cdc06042ac4a3216f9273fcd8dc825be79da449dd6ce75d47906669a33c5677a90b6e2553a20762d665
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
290 B
Plaintext

/**
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;