@kpi4me/golden-layout
Version:
A multi-screen javascript Layout manager https://golden-layout.com
18 lines (13 loc) • 290 B
TypeScript
/**
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;