Socket
Socket
Sign inDemoInstall

junk

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.0 to 2.1.0

34

index.js

@@ -5,20 +5,24 @@ 'use strict';

// /^npm-debug\.log$/, // npm error log
// /^\..*\.swp$/, // vim state
// // macOS
// /^\.DS_Store$/, // stores custom folder attributes
// /^\.AppleDouble$/, // stores additional file resources
// /^\.LSOverride$/, // contains the absolute path to the app to be used
// /^Icon\r$/, // custom Finder icon: http://superuser.com/questions/298785/icon-file-on-os-x-desktop
// /^\._.*/, // thumbnail
// /^\.Spotlight-V100(?:$|\/)/, // directory that might appear on external disk
// /\.Trashes/, // file that might appear on external disk
// /^__MACOSX$/, // resource fork
// /^\..*\.swp$/, // Vim state
// # macOS
// /^\.DS_Store$/, // Stores custom folder attributes
// /^\.AppleDouble$/, // Stores additional file resources
// /^\.LSOverride$/, // Contains the absolute path to the app to be used
// /^Icon\r$/, // Custom Finder icon: http://superuser.com/questions/298785/icon-file-on-os-x-desktop
// /^\._.*/, // Thumbnail
// /^\.Spotlight-V100(?:$|\/)/, // Directory that might appear on external disk
// /\.Trashes/, // File that might appear on external disk
// /^__MACOSX$/, // Resource fork
// # Linux
// /~$/, // backup file
// /~$/, // Backup file
// # Windows
// /^Thumbs\.db$/, // image file cache
// /^ehthumbs\.db$/, // folder config file
// /^Desktop\.ini$/ // stores custom folder attributes
// /^Thumbs\.db$/, // Image file cache
// /^ehthumbs\.db$/, // Folder config file
// /^Desktop\.ini$/ // Stores custom folder attributes
// /^@eaDir$/ // Synology Diskstation "hidden" folder where the server stores thumbnails
exports.re = /^npm-debug\.log$|^\..*\.swp$|^\.DS_Store$|^\.AppleDouble$|^\.LSOverride$|^Icon\r$|^\._.*|^\.Spotlight-V100(?:$|\/)|\.Trashes|^__MACOSX$|~$|^Thumbs\.db$|^ehthumbs\.db$|^Desktop\.ini$/;
exports.regex = exports.re = /^npm-debug\.log$|^\..*\.swp$|^\.DS_Store$|^\.AppleDouble$|^\.LSOverride$|^Icon\r$|^\._.*|^\.Spotlight-V100(?:$|\/)|\.Trashes|^__MACOSX$|~$|^Thumbs\.db$|^ehthumbs\.db$|^Desktop\.ini$|^@eaDir$/;

@@ -25,0 +29,0 @@ exports.is = filename => exports.re.test(filename);

{
"name": "junk",
"version": "2.0.0",
"version": "2.1.0",
"description": "Filter out system junk files like .DS_Store and Thumbs.db",

@@ -39,6 +39,3 @@ "license": "MIT",

"xo": "*"
},
"xo": {
"esnext": true
}
}

@@ -39,3 +39,3 @@ # junk [![Build Status](https://travis-ci.org/sindresorhus/junk.svg?branch=master)](https://travis-ci.org/sindresorhus/junk)

### junk.re
### junk.regex

@@ -42,0 +42,0 @@ Regex used for matching.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc