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

sindresorhus/junk

Repository files navigation

junk

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

Install

$ npm install junk

Usage

import fs from 'node:fs/promises';
import {isNotJunk} from 'junk';

const files = await fs.readdir('some/path');

console.log(files);
//=> ['.DS_Store', 'test.jpg']

console.log(files.filter(isNotJunk));
//=> ['test.jpg']

API

isJunk(filename)

Returns true if filename matches a junk file.

isNotJunk(filename)

Returns true if filename does not match a junk file.

junkRegex

Regex used for matching junk files.

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