UNPKG

hardhat

Version:

Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

10 lines (7 loc) 215 B
let emojiEnabled = false; export function enableEmoji() { emojiEnabled = true; } export function emoji(msgIfEnabled: string, msgIfDisabled: string = "") { return emojiEnabled ? msgIfEnabled : msgIfDisabled; }