Outlook_Addin_LLM/node_modules/junk
2024-11-29 21:36:41 +01:00
..
index.d.ts First version with simple frontend and Compose Email by AI 2024-11-29 21:36:41 +01:00
index.js First version with simple frontend and Compose Email by AI 2024-11-29 21:36:41 +01:00
license First version with simple frontend and Compose Email by AI 2024-11-29 21:36:41 +01:00
package.json First version with simple frontend and Compose Email by AI 2024-11-29 21:36:41 +01:00
readme.md First version with simple frontend and Compose Email by AI 2024-11-29 21:36:41 +01:00

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