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-threat-hunting /
node_modules /
kuler /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
51
B
-rw-r--r--
2024-07-01 08:57
LICENSE
1.03
KB
-rw-r--r--
2024-07-01 08:57
README.md
903
B
-rw-r--r--
2024-07-01 08:57
index.js
2.5
KB
-rw-r--r--
2024-07-01 08:57
package.json
1.41
KB
-rw-r--r--
2024-07-01 08:57
test.js
883
B
-rw-r--r--
2024-07-01 08:57
Save
Rename
const { it, describe } = require('mocha'); const assume = require('assume'); const kuler = require('./'); describe('kuler', function () { it('renders colors in the terminal', function () { console.log(' VISUAL INSPECTION'); console.log(' '+ kuler('red').style('F00')); console.log(' '+ kuler('black').style('#000')); console.log(' '+ kuler('white').style('#FFFFFF')); console.log(' '+ kuler('lime').style('AAFF5B')); console.log(' '+ kuler('violet').style('#ee82ee')); console.log(' '+ kuler('purple').style('#800080')); console.log(' '+ kuler('purple').style('#800080'), 'correctly reset to normal color'); console.log(' '+ kuler('green', '#008000')); }); describe('#style', function () { it('has a style method', function () { assume(kuler('what').style).is.a('function'); }); }); });