aec19f0f36ff72d22f97e121d2da7a461227bfaf.svn-base 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 'use strict'; module.exports = () => { const pattern = [ '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)', '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))' ].join('|'); return new RegExp(pattern, 'g'); };