8000 GitHub - AgtLucas/junk: Helps you filter out OS junk files like .DS_Store and Thumbs.db - Node.js module
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AgtLucas/junk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

junk Build Status

Helps you filter out OS junk files like .DS_Store and Thumbs.db

Getting started

Install: npm install --save junk

Example

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.isnt));
	// ['test.jpg']
});

Documentation

junk.is(filename)

Returns true if filename matches any of the junk.rules.

junk.isnt(filename)

Returns true if filename doesn't match any of the junk.rules.

junk.rules

Returns an array of regexes you can match against.

License

MIT License • © Sindre Sorhus

About

Helps you filter out OS junk files like .DS_Store and Thumbs.db - Node.js module

Resources

Stars

Watchers

Forks

Packages

No packages published
0