Created
December 20, 2019 01:30
-
-
Save b1tg/560a97b1984434ace853813821bb1223 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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