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 290 B
export function formatTaskId(taskId) { if (typeof taskId === "string") { return taskId; } return taskId.join(" "); } export function getActorFragment(pluginId) { return pluginId !== undefined ? `Plugin ${pluginId} is` : "You are"; } //# sourceMappingURL=utils.js.map