You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 months ago | |
---|---|---|
.. | ||
index.d.ts | 5 months ago | |
index.js | 5 months ago | |
license | 5 months ago | |
package.json | 5 months ago | |
readme.md | 5 months ago |
readme.md
junk 
Filter out system junk files like
.DS_Store
andThumbs.db
Install
$ npm install junk
Usage
const {promisify} = require('util');
const fs = require('fs');
const junk = require('junk');
const pReaddir = promisify(fs.readdir);
(async () => {
const files = await pReaddir('some/path');
console.log(files);
//=> ['.DS_Store', 'test.jpg']
console.log(files.filter(junk.not));
//=> ['test.jpg']
})();
API
junk.is(filename)
Returns true
if filename
matches a junk file.
junk.not(filename)
Returns true
if filename
doesn't match a junk file.
junk.regex
Regex used for matching junk files.
License
MIT © Sindre Sorhus