mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
function stripAnsi(string) {
|
|
// Simple mock that just returns the input string
|
|
return string
|
|
}
|
|
|
|
module.exports = stripAnsi
|
|
module.exports.default = stripAnsi
|