⚝
One Hat Cyber Team
⚝
Your IP:
3.12.102.204
Server IP:
162.254.39.145
Server:
Linux premium289.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
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
node_modules
/
npm
/
lib
/
search
/
View File Name :
package-filter.js
'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 }