Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
colorspace /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
1.09
KB
-rw-r--r--
2026-02-18 13:02
README.md
973
B
-rw-r--r--
2026-02-18 13:02
index.js
740
B
-rw-r--r--
2026-02-18 13:02
package.json
1.55
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
'use strict'; var color = require('color') , hex = require('text-hex'); /** * Generate a color for a given name. But be reasonably smart about it by * understanding name spaces and coloring each namespace a bit lighter so they * still have the same base color as the root. * * @param {string} namespace The namespace * @param {string} [delimiter] The delimiter * @returns {string} color */ module.exports = function colorspace(namespace, delimiter) { var split = namespace.split(delimiter || ':'); var base = hex(split[0]); if (!split.length) return base; for (var i = 0, l = split.length - 1; i < l; i++) { base = color(base) .mix(color(hex(split[i + 1]))) .saturate(1) .hex(); } return base; };