mirror of https://gitee.com/antv-l7/antv-l7
678 B
678 B
is-text-path
Check if a filepath is a text file
Install
$ npm install --save is-text-path
Usage
var isTextPath = require('is-text-path');
isTextPath('src/unicorn.txt');
//=> true
isTextPath('src/unicorn.png');
//=> false
Related
text-extensions
- List of text file extensionsis-binary-path
- Check if a filepath is a binary file
License
MIT © Sindre Sorhus