UNPKG

bktide

Version:

Command-line interface for Buildkite CI/CD workflows with rich shell completions (Fish, Bash, Zsh) and Alfred workflow integration for macOS power users

13 lines 359 B
import { logger } from '../../services/logger.js'; /** * Base class for token formatters */ export class BaseTokenFormatter { format(data, formatFn, options) { if (options?.debug) { logger.debug(`Formatting with ${this.name} formatter`); } return formatFn(data, options); } } //# sourceMappingURL=Formatter.js.map