UNPKG

api

Version:

Magical SDK generation from an OpenAPI definition 🪄

11 lines (9 loc) • 212 B
/* eslint-disable no-console */ import chalk from 'chalk'; export default function logger(log: string, error?: boolean) { if (error) { console.error(chalk.red(log)); } else { console.log(log); } }