8000 GitHub - sindresorhus/junk at v1.0.3
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sindresorhus/junk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
View all files

Repository files navigation

junk Build Status

Filter out OS junk files like .DS_Store and Thumbs.db

Install

$ npm install --save junk

Usage

var fs = require('fs');
var junk = require('junk');

fs.readdir('path', function (err, files) {
	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.re

The regex used for matching.

License

MIT © Sindre Sorhus

About

Filter out OS junk files like .DS_Store and Thumbs.db

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 9

0