UNPKG

@slippy-lint/slippy

Version:

A simple but powerful linter for Solidity

12 lines (9 loc) 216 B
/* eslint-disable no-console */ export class Logger { static log = (...args: string[]): void => { console.log(...args); }; static error = (...args: string[]): void => { console.error(...args); }; }