Skip to content

Instantly share code, notes, and snippets.

@zorbyte
zorbyte / keybase.md
Created June 13, 2020 14:29
My keybase proof.

Keybase proof

I hereby claim:

  • I am zorbyte on github.
  • I am zorbyte (https://keybase.io/zorbyte) on keybase.
  • I have a public key whose fingerprint is 6E90 3576 0D81 D9EC A728 44A3 6C94 285A 81E2 2EFB

To claim this, I am signing this object:

@zorbyte
zorbyte / Logger.ts
Last active April 12, 2020 03:19
A simple TypeScript logger utility for node.js
import chalk = require("chalk");
interface MethodColours {
[k: string]: chalk.Chalk;
}
interface ConsoleLogMethods {
debug(...any: any[]): void;
info(...any: any[]): void;
warn(...any: any[]): void;