/
var
/
www
/
greso.tech
/
server
/
nsm
/
node_modules
/
cheerio
/
lib
/
/var/www/greso.tech/server/nsm/node_modules/cheerio/lib
mkdir
upload
Name
Size
Mode
Actions
api/
-
0755
rm
cheerio.js
3305
0644
edit
dl
rm
parse.js
1868
0644
edit
dl
rm
static.js
3652
0644
edit
dl
rm
utils.js
1252
0644
edit
dl
rm
Edit:
/var/www/greso.tech/server/nsm/node_modules/cheerio/lib/utils.js
(1252B)
/** * HTML Tags */ var tags = { tag: true, script: true, style: true }; /** * Check if the DOM element is a tag * * isTag(type) includes <script> and <style> tags */ exports.isTag = function(type) { if (type.type) type = type.type; return tags[type] || false; }; /** * Convert a string to camel case notation. * @param {String} str String to be converted. * @return {String} String in camel case notation. */ exports.camelCase = function(str) { return str.replace(/[_.-](\w|$)/g, function(_, x) { return x.toUpperCase(); }); }; /** * Convert a string from camel case to "CSS case", where word boundaries are * described by hyphens ("-") and all characters are lower-case. * @param {String} str String to be converted. * @return {string} String in "CSS case". */ exports.cssCase = function(str) { return str.replace(/[A-Z]/g, '-$&').toLowerCase(); }; /** * Iterate over each DOM element without creating intermediary Cheerio instances. * * This is indented for use internally to avoid otherwise unnecessary memory pressure introduced * by _make. */ exports.domEach = function(cheerio, fn) { var i = 0, len = cheerio.length; while (i < len && fn(i, cheerio[i]) !== false) ++i; return cheerio; };
Save
cmd:
run