Skip to main content
Module

x/iro/mod.ts

Fast and clean terminal coloring and styling utility for Deno and Node.js.
Latest
File
import _iro, { Block } from './src/iro.ts';
export default function iro(str: string, ...blocks: Block[]): string { if (Deno.noColor) { return str; }
return _iro(str, ...blocks);}
export * from './src/iro.ts';