mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
10 lines
283 B
JavaScript
Executable File
10 lines
283 B
JavaScript
Executable File
import { Transform } from "node:stream"
|
|
import chalk from "chalk"
|
|
|
|
export default ({ id, color = "bgCyan" }) => {
|
|
return new Transform({
|
|
transform(data, encoding, callback) {
|
|
callback(null, `${chalk[color](`[${id}]`)} > ${data.toString()}`)
|
|
}
|
|
})
|
|
} |