Files
dealplustech/dealplustech-astro/node_modules/astro/dist/cli/infra/passthrough-text-styler.js
2026-03-02 12:35:14 +07: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
};