`ansi-regex` Test

node v18.11.0
endpointsharetweet
function ansiRegex({onlyFirst = false} = {}) { const pattern = [ '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)', '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))' ].join('|'); return new RegExp(pattern, onlyFirst ? undefined : 'g'); } // Example from https://github.com/nodejs/node/issues/53697 console.log('\x1b]8;;http://example.com\x1b\\This is a link\x1b]8;;\x1b\\ hello'.replace(ansiRegex(), '')); // Example from https://github.com/chalk/strip-ansi/blob/main/readme.md console.log('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007'.replace(ansiRegex(), ''));
Loading…

no comments

    sign in to comment