JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3003215
  • Score
    100M100P100Q245556F
  • License MIT

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

Package Exports

  • junk

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (junk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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