UNPKG

hardhat

Version:

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

6 lines (5 loc) 184 B
export function getRequireCachedFiles(): string[] { return Object.keys(require.cache).filter( (p) => !p.startsWith("internal") && (p.endsWith(".js") || p.endsWith(".ts")) ); }