mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 10:12:54 +00:00

PR-URL: https://github.com/nodejs/node/pull/37177 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
4 lines
173 B
JavaScript
4 lines
173 B
JavaScript
const r = new RegExp('\x1b(?:\\[(?:\\d+[ABCDEFGJKSTm]|\\d+;\\d+[Hfm]|' +
|
|
'\\d+;\\d+;\\d+m|6n|s|u|\\?25[lh])|\\w)', 'g')
|
|
module.exports = str => str.replace(r, '')
|