UNPKG

shell-mirror

Version:

Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.

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;