Add header to repl. Use uppercase Dish in chef export. Fix SyncDish constructor call

This commit is contained in:
d98762625 2018-09-21 12:24:34 +01:00
parent e19d3d0d06
commit cc840c050b
3 changed files with 19 additions and 4 deletions

View file

@ -15,7 +15,15 @@ import "babel-polyfill";
/*eslint no-console: ["off"] */
console.log("Welcome to CyberChef");
console.log(`
______ __ ________ ____
/ ____/_ __/ /_ ___ _____/ ____/ /_ ___ / __/
/ / / / / / __ \\/ _ \\/ ___/ / / __ \\/ _ \\/ /_
/ /___/ /_/ / /_/ / __/ / / /___/ / / / __/ __/
\\____/\\__, /_.___/\\___/_/ \\____/_/ /_/\\___/_/
/____/
`);
const replServer = repl.start({
prompt: "chef > ",
});