Server IP : 66.29.132.122 / Your IP : 18.227.24.208 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /lib/node_modules/npm/lib/search/ |
Upload File : |
'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 }