Files
skills-here-run-place/node_modules/astro/dist/cli/infra/passthrough-text-styler.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

24 lines
279 B
JavaScript

class PassthroughTextStyler {
bgWhite(msg) {
return msg;
}
black(msg) {
return msg;
}
dim(msg) {
return msg;
}
green(msg) {
return msg;
}
bold(msg) {
return msg;
}
bgGreen(msg) {
return msg;
}
}
export {
PassthroughTextStyler
};