UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

18 lines (13 loc) • 290 B
/** 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;