Skip to content

Instantly share code, notes, and snippets.

@b1tg
Created December 20, 2019 01:30
Show Gist options
  • Save b1tg/560a97b1984434ace853813821bb1223 to your computer and use it in GitHub Desktop.
Save b1tg/560a97b1984434ace853813821bb1223 to your computer and use it in GitHub Desktop.
let log = function(varStr) {
if (typeof varStr !== "string"){
console.log(`[*] unknow ${varStr}`)
} else {
console.log(`[*]${varStr}: ${eval(varStr)}`)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment