junk

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

MIT 15 个版本
安装
npm install junk
yarn add junk
pnpm add junk
bun add junk
README

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.

版本列表
4.0.1 2023-04-19
4.0.0 2021-07-28
3.1.0 2019-04-02
3.0.0 2019-03-18
2.1.0 2017-02-27
2.0.0 2016-08-27
1.0.3 2016-06-17
1.0.2 2015-06-29
1.0.1 2015-02-22
1.0.0 2014-08-09
0.3.0 2014-03-06
0.2.2 2013-12-07
0.2.1 2013-05-05
0.2.0 2013-05-04
0.1.0 2013-05-04