xiaofu-ruoyi-vue/node_modules/is-binary-path
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
index.d.ts 第一次提交 2024-04-23 08:05:40 +08:00
index.js 第一次提交 2024-04-23 08:05:40 +08:00
license 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-23 08:05:40 +08:00
readme.md 第一次提交 2024-04-22 22:43:17 +08:00

readme.md

is-binary-path Build Status

Check if a file path is a binary file

Install

$ npm install is-binary-path

Usage

const isBinaryPath = require('is-binary-path');

isBinaryPath('source/unicorn.png');
//=> true

isBinaryPath('source/unicorn.txt');
//=> false

License

MIT © Sindre Sorhus, Paul Miller