![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/node_modules/junk/ |
declare const junk: { /** Returns `true` if `filename` matches a junk file. */ is(filename: string): boolean; /** Returns `true` if `filename` doesn't match a junk file. @example ``` import {promisify} from 'util'; import * as fs from 'fs'; import junk = require('junk'); const pReaddir = promisify(fs.readdir); (async () => { const files = await pReaddir('some/path'); console.log(files); //=> ['.DS_Store', 'test.jpg'] console.log(files.filter(junk.not)); //=> ['test.jpg'] })(); ``` */ not(filename: string): boolean; /** Regex used for matching junk files. */ readonly regex: RegExp; // TODO: Remove this for the next major release default: typeof junk; }; export = junk;