UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

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;