MIF_E31212289/node_modules/junk
lutfahimayatus 0e50ebf80c first commit 2024-07-01 11:18:03 +07:00
..
index.d.ts first commit 2024-07-01 11:18:03 +07:00
index.js first commit 2024-07-01 11:18:03 +07:00
license first commit 2024-07-01 11:18:03 +07:00
package.json first commit 2024-07-01 11:18:03 +07:00
readme.md first commit 2024-07-01 11:18:03 +07:00

readme.md

junk Build Status

Filter out system junk files like .DS_Store and Thumbs.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